我尝试加密和解密.txt文件。加密工作正常,但是当我解密时,.txt文件为空。这是我的代码:
~
我知道DES并不安全。但这只是因为我试图搞乱去加密。
答案 0 :(得分:0)
尝试使用以下方法替换解密方法中的代码:
// write decrypted bytes
fos.write(cipher.doFinal(Files.readAllBytes(file.toPath())));
// close the output file
fos.flush();
fos.close();