最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JAVA 實現(xiàn)磁盤文件加解密操作的示例代碼

 更新時間:2020年09月11日 09:28:53   作者:Nemo  
這篇文章主要介紹了JAVA 實現(xiàn)磁盤文件加解密操作的示例代碼,幫助大家利用Java實現(xiàn)文件的加解密,感興趣的朋友可以了解下

簡單實現(xiàn)了下:

import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import java.io.*;
import java.security.GeneralSecurityException;
import java.security.SecureRandom;

/**
 * 文件/目錄加解密相關(guān)
 * @author: Nemo
 * @date: 2019/3/19.
 */
public class FileCrote {

  /**
   * 加密后的文件后綴
   */
  private static final String SUBFIX = ".enc";

  /**
   * 執(zhí)行路徑
   */
  private static String path = "";

  /**
   * 執(zhí)行模式 1加密 2解密
   */
  private static String mode = "1";

  /**
   * 執(zhí)行密碼
   */
  private static String pass = "";

  private static String currentFilePath = null;

  /**
   * 根據(jù)路徑加密文件
   * 1、如果是目錄,則找它下面的文件進行加密
   * 2、如果是文件,則直接加密
   * @param path
   * @throws IOException
   */
  private static void encrypt(String path) throws IOException, GeneralSecurityException {
    System.out.println("開始處理"+path);
    File file = new File(path);
    if(!file.exists()){
      System.out.println("需加密的路徑不存在:"+path);
      return;
    }
    if(file.isDirectory()){
      //目錄則遍歷其下的文件
      File[] files = file.listFiles();
      if(files == null){
        return;
      }
      for (File subFile : files) {
        encrypt(subFile.getAbsolutePath());
      }
    }else{
      //文件則直接加密
      encrypt(file);
    }
  }

  /**
   * 文件加密
   * @param file
   * @throws IOException
   */
  private static void encrypt(File file) throws IOException, GeneralSecurityException {
    String path = file.getAbsolutePath();
    if(path.endsWith(SUBFIX)){
      System.out.println("已加密文件不需再次加密"+path);
      return;
    }

    String encFilePath = path + SUBFIX;
    File encFile = new File(encFilePath);

    System.out.println("開始加密文件"+path);
    encryptFile(file,encFile,Cipher.ENCRYPT_MODE);
  }

  /**
   * 加解密文件操作
   * @param srcFile
   * @param encFile
   * @throws IOException
   */
  private static void encryptFile(File srcFile, File encFile,int mode) throws IOException, GeneralSecurityException {
    if(!srcFile.exists()){
      System.out.println("source file not exixt");
      return;
    }

    currentFilePath = srcFile.getAbsolutePath();

    //密碼
    Cipher cipher = getCipher(mode);

    FileInputStream fis = null;
    FileOutputStream fos = null;
    try {
      fis = new FileInputStream(srcFile);
      fos = new FileOutputStream(encFile);

      //真正處理
      crypt(fis, fos, cipher);
    } catch (IOException e) {
      e.printStackTrace();
    } finally {
      if (fis != null) {
        fis.close();
      }
      if (fos != null) {
        fos.close();
      }
    }

    //源文件刪除
    srcFile.delete();
  }

  /**
   * 得到加解密Cipher
   * @param mode
   * @return
   * @throws GeneralSecurityException
   */
  private static Cipher getCipher(int mode) throws GeneralSecurityException {
    String type = "AES";
    Cipher cipher = Cipher.getInstance(type+"/ECB/PKCS5Padding");
    KeyGenerator kgen = KeyGenerator.getInstance(type);
    kgen.init(128, new SecureRandom(pass.getBytes()));
    SecretKey key = kgen.generateKey();
    cipher.init(mode,key);
    return cipher;
  }

  /**
   * 加密解密流
   * @param in    加密解密前的流
   * @param out    加密解密后的流
   * @param cipher  加密解密
   * @throws IOException
   * @throws GeneralSecurityException
   */
  private static void crypt(InputStream in, OutputStream out, Cipher cipher) throws IOException, GeneralSecurityException {
    int blockSize = cipher.getBlockSize() * 1000;
    int outputSize = cipher.getOutputSize(blockSize);

    byte[] inBytes = new byte[blockSize];
    byte[] outBytes = new byte[outputSize];

    int inLength = 0;
    boolean more = true;
    while (more) {
      inLength = in.read(inBytes);
      if (inLength == blockSize) {
        int outLength = cipher.update(inBytes, 0, blockSize, outBytes);
        out.write(outBytes, 0, outLength);
      } else {
        more = false;
      }
    }
    if (inLength > 0) {
      outBytes = cipher.doFinal(inBytes, 0, inLength);
    } else {
      outBytes = cipher.doFinal();
    }
    out.write(outBytes);
  }

  /**
   * 根據(jù)路徑解密
   * 1、如果是目錄,則找它下面的加密文件進行解密
   * 2、如果是文件,并且它是加密文件,則直接解密
   * @param path
   * @throws IOException
   */
  private static void decrypt(String path) throws IOException, GeneralSecurityException {
    System.out.println("開始處理"+path);
    File file = new File(path);
    if(!file.exists()){
      System.out.println("需解密的路徑不存在:"+path);
      return;
    }
    if(file.isDirectory()){
      //目錄則遍歷其下的文件
      File[] files = file.listFiles();
      if(files == null){
        return;
      }
      for (File subFile : files) {
        decrypt(subFile.getAbsolutePath());
      }
    }else{
      decrypt(file);
    }
  }

  /**
   * 文件解密
   * @param file
   * @throws IOException
   */
  private static void decrypt(File file) throws IOException, GeneralSecurityException {
    String path = file.getAbsolutePath();
    if(!path.endsWith(SUBFIX)){
      System.out.println("非加密文件不需解密"+path);
      return;
    }
    System.out.println("開始解密文件"+path);

    String newPath = path.substring(0,path.length() - SUBFIX.length());
    encryptFile(file,new File(newPath),Cipher.DECRYPT_MODE);
  }

  /**
   * 字符串是否非空
   * @param s
   * @return
   */
  private static boolean isNotEmpty(String s){
    if (s == null || "".equals(s)) {
      return false;
    }
    return true;
  }

  /**
   * 開始處理
   * @throws IOException
   * @throws GeneralSecurityException
   */
  private static void deal() throws IOException, GeneralSecurityException {
    while (true) {
      print();
      BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
      String s = reader.readLine();
      if("path".equals(s)) {
        System.out.println("\r\n請輸入執(zhí)行路徑\r\n");
        while (true) {
          reader = new BufferedReader(new InputStreamReader(System.in));
          s = reader.readLine();
          if (!isNotEmpty(s)) {
            System.out.println("\r\n請輸入執(zhí)行路徑\r\n");
            continue;
          }else {
            File file = new File(s);
            if(!file.exists()){
              System.out.println("\r\n該路徑不存在,請重新輸入\r\n");
              continue;
            }
          }
          path = s;
          break;
        }
      } else if("pass".equals(s)) {
        System.out.println("\r\n請輸入加/解密密碼\r\n");
        while (true) {
          reader = new BufferedReader(new InputStreamReader(System.in));
          s = reader.readLine();
          if (!isNotEmpty(s)) {
            System.out.println("\r\n請輸入加/解密密碼\r\n");
            continue;
          }
          pass = s;
          break;
        }
      } else if ("1".equals(s)) {
        mode = s;
        System.out.println("\r\n當前已選模式:加密\n");
      } else if ("2".equals(s)) {
        mode = s;
        System.out.println("\r\n當前已選模式:解密\r\n");
      }else if("start".equals(s)){
        if(!isNotEmpty(path)) {
          System.out.println("\r\n請輸入加/解密密碼再開始\r\n");
          continue;
        }

        if(!isNotEmpty(pass)) {
          System.out.println("\r\n請輸入執(zhí)行路徑后再開始\r\n");
          continue;
        }

        if ("1".equals(mode)) {
          encrypt(path);
          System.out.println("\r\n\r\n操作完成\r\n\r\n");
        } else {
          try {
            decrypt(path);
            System.out.println("\r\n\r\n操作完成\r\n\r\n");
          }catch (BadPaddingException e) {
            System.out.println("文件:"+currentFilePath+"解密失敗,密碼錯誤");
          }
        }
      }else if("quit".equals(s)){
        System.exit(-1);
      } else {
        System.out.println("\r\n輸入錯誤\r\n");
      }
    }
  }

  /**
   * 輸出提示語
   */
  private static void print(){
    System.out.println("\r\n" +
        "輸入path開始選擇執(zhí)行路徑\r\n" +
        "輸入pass開始選擇加/解密密碼\r\n" +
        "輸入如下數(shù)字以選擇處理模式:1 加密 2 解密\r\n" +
        "輸入start則開始執(zhí)行已選操作\r\n" +
        "輸入quit則退出程序\r\n" +
        "當前選擇路徑:"+path+"\r\n" +
        "當前選擇模式:"+mode+"\r\n" +
        "當前選擇密碼:"+pass+"\r\n");
  }

  public static void main(String args[]) throws IOException, GeneralSecurityException {
    deal();
  }

}

以上就是JAVA 實現(xiàn)磁盤文件加解密操作的示例代碼的詳細內(nèi)容,更多關(guān)于Java 文件加解密的資料請關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

  • springboot 使用QQ郵箱發(fā)送郵件的操作方法

    springboot 使用QQ郵箱發(fā)送郵件的操作方法

    這篇文章主要介紹了springboot使用QQ郵箱發(fā)送郵件功能,本文通過實例圖文相結(jié)合給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2021-10-10
  • MyBatis學(xué)習(xí)教程(三)-MyBatis配置優(yōu)化

    MyBatis學(xué)習(xí)教程(三)-MyBatis配置優(yōu)化

    這篇文章主要介紹了MyBatis學(xué)習(xí)教程(三)-MyBatis配置優(yōu)化的相關(guān)資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下
    2016-05-05
  • SpringBoot實現(xiàn)公共字段自動填充的方法步驟

    SpringBoot實現(xiàn)公共字段自動填充的方法步驟

    這篇文章主要介紹了SpringBoot實現(xiàn)公共字段自動填充的方法步驟,文中通過代碼示例講解的非常詳細,對大家的學(xué)習(xí)或工作有一定的幫助,需要的朋友可以參考下
    2024-11-11
  • mybatis?selectKey賦值未生效的原因分析

    mybatis?selectKey賦值未生效的原因分析

    這篇文章主要介紹了mybatis?selectKey賦值未生效的原因分析,selectKey 會將 SELECT LAST_INSERT_ID()的結(jié)果放入到傳入的實體類的主鍵里面,文中通過代碼示例給大家講解非常詳細,需要的朋友可以參考下
    2024-02-02
  • Java及數(shù)據(jù)庫對日期進行格式化方式

    Java及數(shù)據(jù)庫對日期進行格式化方式

    這篇文章主要介紹了Java及數(shù)據(jù)庫對日期進行格式化方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-03-03
  • Java中Collections.sort()排序方法舉例詳解

    Java中Collections.sort()排序方法舉例詳解

    很多時候都需要對一些數(shù)據(jù)進行排序的操作,這篇文章主要給大家介紹了關(guān)于Java中Collections.sort()方法舉例詳解的相關(guān)資料,使用Collections.sort()可以使用其sort()方法來對List、Set等集合進行排序,需要的朋友可以參考下
    2024-02-02
  • Java CountDownLatch應(yīng)用場景代碼實例

    Java CountDownLatch應(yīng)用場景代碼實例

    這篇文章主要介紹了Java CountDownLatch應(yīng)用場景代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下
    2020-09-09
  • 解決springcloud中Feign導(dǎo)入依賴為unknow的情況

    解決springcloud中Feign導(dǎo)入依賴為unknow的情況

    這篇文章主要介紹了解決springcloud中Feign導(dǎo)入依賴為unknow的情況,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-03-03
  • Maven的安裝和環(huán)境變量配置過程

    Maven的安裝和環(huán)境變量配置過程

    文章介紹了如何下載、安裝和配置Maven,包括環(huán)境變量配置和阿里云鏡像的可選配置,此外,還展示了如何在IntelliJ IDEA中新建一個Maven項目
    2024-11-11
  • Java中如何將String轉(zhuǎn)JSONObject

    Java中如何將String轉(zhuǎn)JSONObject

    這篇文章主要介紹了Java中如何將String轉(zhuǎn)JSONObject,String類型轉(zhuǎn)JSONObject,下面有兩種方式可以進行轉(zhuǎn)換,本文結(jié)合實例代碼給大家介紹的非常詳細,需要的朋友可以參考下
    2023-05-05

最新評論

渝中区| 库尔勒市| 哈巴河县| 探索| 四子王旗| 昆山市| 松江区| 宣城市| 常山县| 湖口县| 兴安盟| 海林市| 江陵县| 阿拉善盟| 娱乐| 安图县| 江达县| 淮阳县| 利津县| 中西区| 尼玛县| 南召县| 汉源县| 垣曲县| 古丈县| 彩票| 山东省| 霍林郭勒市| 丰原市| 庐江县| 罗甸县| 翼城县| 溧阳市| 北安市| 定南县| 平凉市| 乌苏市| 西畴县| 广宗县| 云林县| 小金县|