aes - Java使用对称加密算法加密大文件内存资源消耗问题
ringa_lee
ringa_lee 2017-04-18 10:40:05
0
1
727
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);
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板