91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

陕西省| 淮滨县| 新和县| 道真| 隆安县| 华坪县| 赣州市| 双江| 武城县| 呼图壁县| 七台河市| 慈溪市| 龙江县| 嘉荫县| 凤台县| 桓台县| 鹤峰县| 万安县| 织金县| 赣州市| 荔波县| 黑水县| 木兰县| 女性| 五原县| 嘉善县| 清水河县| 刚察县| 屏东市| 云霄县| 从化市| 贺兰县| 大厂| 开远市| 定日县| 晴隆县| 荣昌县| 吉水县| 乌拉特中旗| 卓尼县| 九龙城区|