是否可以创建需要压缩视频的应用程序,用户必须使用密码验证才能打开文件?
如果它是poosible,你们能为我提供一些示例代码吗? 谢谢 , 此致
答案 0 :(得分:2)
尝试这样的事情:
OutputStream out = new ZipOutputStream(new CipherOutputStream(new FileOutputStream(...)), cipher);
反过来说:
InputStream in = new ZipInputStream(new CipherInputStream(new FileInputStream(...)), cipher);
要创建密码,请参阅:http://developer.android.com/reference/javax/crypto/Cipher.html
答案 1 :(得分:0)
我不确定您确切需要什么,但如果您想拥有受密码保护的zip文件,可以使用this library: 以下是一些代码片段:
<强>邮编:强>
ZipArchive zipArchive = new ZipArchive();
zipArchive.zip(targetPath,destinationPath,password);
<强>解压缩:强>
ZipArchive zipArchive = new ZipArchive();
zipArchive.unzip(targetPath,destinationPath,password);