java文件加密解密的方法是什么

avatar
作者
筋斗云
阅读量:0

在Java中,可以使用加密算法来对文件进行加密和解密。常用的加密算法包括对称加密算法和非对称加密算法。

对称加密算法:使用相同的密钥对文件进行加密和解密。常用的对称加密算法包括AES和DES。以下是一个使用AES算法对文件进行加密和解密的示例代码:

import javax.crypto.Cipher; import javax.crypto.spec.SecretKeySpec; import java.io.*; import java.nio.file.Files; import java.nio.file.Paths;  public class FileEncryption {      public static void encryptFile(String inputFilePath, String outputFilePath, String key) throws Exception {         byte[] keyBytes = key.getBytes();         SecretKeySpec secretKey = new SecretKeySpec(keyBytes, "AES");          Cipher cipher = Cipher.getInstance("AES");         cipher.init(Cipher.ENCRYPT_MODE, secretKey);          byte[] inputFileBytes = Files.readAllBytes(Paths.get(inputFilePath));         byte[] encryptedBytes = cipher.doFinal(inputFileBytes);          FileOutputStream outputStream = new FileOutputStream(outputFilePath);         outputStream.write(encryptedBytes);         outputStream.close();     }      public static void decryptFile(String inputFilePath, String outputFilePath, String key) throws Exception {         byte[] keyBytes = key.getBytes();         SecretKeySpec secretKey = new SecretKeySpec(keyBytes, "AES");          Cipher cipher = Cipher.getInstance("AES");         cipher.init(Cipher.DECRYPT_MODE, secretKey);          byte[] inputFileBytes = Files.readAllBytes(Paths.get(inputFilePath));         byte[] decryptedBytes = cipher.doFinal(inputFileBytes);          FileOutputStream outputStream = new FileOutputStream(outputFilePath);         outputStream.write(decryptedBytes);         outputStream.close();     }      public static void main(String[] args) {         String inputFilePath = "input.txt";         String outputFilePath = "output.txt";         String key = "secretKey";          try {             encryptFile(inputFilePath, outputFilePath, key);             decryptFile(outputFilePath, "decrypted.txt", key);         } catch (Exception e) {             e.printStackTrace();         }     } } 

以上示例代码使用AES算法对文件进行加密和解密,其中secretKey是用于加密和解密的密钥。可以根据需要调整密钥长度和加密算法。

除了对称加密算法,还可以使用非对称加密算法如RSA来对文件进行加密和解密。非对称加密算法需要一对公钥和私钥,公钥用于加密数据,私钥用于解密数据。

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!