亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java使用異或對文件進行加密解密

發布時間:2020-09-10 08:40:04 來源:腳本之家 閱讀:202 作者:百無1用是書生 欄目:編程語言

本文實例為大家分享了java使用異或對文件進行加密解密的具體代碼,供大家參考,具體內容如下

1.使用異或的方式加密文件的原理

一個數異或另一個數兩次,結果一定是其本身

2.使用異或的原理加密文件

/**
 * 將文件內容加密
 * 使用異或的方式將a.txt加密復制出一個b.txt,放到同一個文件夾下
*/
 @Test
 public void encryptFile(){
 FileInputStream in = null;
 FileOutputStream out = null;
 try {
  String sourceFileUrl = "C:\\Users\\admin\\Desktop\\testIO\\a.txt";
  String targetFileUrl = "C:\\Users\\admin\\Desktop\\testIO\\b.txt";
  in = new FileInputStream(sourceFileUrl);
  out = new FileOutputStream(targetFileUrl);
  int data = 0;
  while ((data=in.read())!=-1){
  //將讀取到的字節異或上一個數,加密輸出
  out.write(data^1234);
  }
 }catch (Exception e){
  e.printStackTrace();
 }finally {
  //在finally中關閉開啟的流
  if (in!=null){
  try {
   in.close();
  } catch (IOException e) {
   e.printStackTrace();
  }
  }
  if (out!=null){
  try {
   out.close();
  } catch (IOException e) {
   e.printStackTrace();
  }
  }
 }
 }

3.使用異或的原理解密文件

 /**
 * 將文件內容解密
 * 將使用異或的方式加密復制出的b.txt解密到c.txt,放到同一個文件夾下
 */
 @Test
 public void decryptFile(){
 FileInputStream in = null;
 FileOutputStream out = null;
 try {
  String sourceFileUrl = "C:\\Users\\admin\\Desktop\\testIO\\b.txt";
  String targetFileUrl = "C:\\Users\\admin\\Desktop\\testIO\\c.txt";
  in = new FileInputStream(sourceFileUrl);
  out = new FileOutputStream(targetFileUrl);
  int data = 0;
  while ((data=in.read())!=-1){
  //將讀取到的字節異或上一個數,加密輸出
  out.write(data^1234);
  }
 }catch (Exception e){
  e.printStackTrace();
 }finally {
  //在finally中關閉開啟的流
  if (in!=null){
  try {
   in.close();
  } catch (IOException e) {
   e.printStackTrace();
  }
  }
  if (out!=null){
  try {
   out.close();
  } catch (IOException e) {
   e.printStackTrace();
  }
  }
 }
 }

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

高淳县| 西贡区| 东乌珠穆沁旗| 梅河口市| 曲阜市| 大英县| 城口县| 红原县| 红安县| 远安县| 株洲市| 邢台市| 射洪县| 石狮市| 贡山| 奉化市| 江城| 金门县| 若尔盖县| 竹北市| 古田县| 楚雄市| 华安县| 绥宁县| 百色市| 延安市| 东丽区| 顺平县| 台南县| 积石山| 新巴尔虎左旗| 温泉县| 雅安市| 八宿县| 上思县| 安远县| 巩留县| 象州县| 甘南县| 禄丰县| 长垣县|