aes - Java使用对称加密算法加密大文件内存资源消耗问题
ringa_lee
ringa_lee 2017-04-18 10:40:05
0
1
724
ringa_lee
ringa_lee

ringa_lee

全部回覆(1)
阿神

使用 CipherOutputStream

Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.ENCRYPT_MODE, key);

InputStream is = new FileInputStream(file);  
CipherOutputStream out = new CipherOutputStream(new FileOutputStream(dest), cipher)

IOUtils.copyLarge(is, out);
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板