作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我实际上是在尝试在 Java/JSP 驱动的网站上执行以下操作:
这是构建/加密存档,然后提取其内容,我正在尝试弄清楚如何做。我真的不关心存档格式,除了它非常安全。
我的问题的理想解决方案将非常容易实现,并且只需要经过试验和测试的库,这些库具有免费和非限制性许可(例如 apache、berkeley、lgpl)。
我知道 TrueZIP 和 WinZipAES 库;前者似乎有点矫枉过正,我不知道后者有多稳定……还有其他可行的解决方案吗?
最佳答案
如果您知道如何使用 java.util.zip 创建 zip 文件包,您可以创建一个 PBE Cipher并将其传递给 CipherOutputStream 或 CipherInputStream(取决于您是读还是写)。
以下应该让你开始:
public class ZipTest {
public static void main(String [] args) throws Exception {
String password = "password";
write(password);
read(password);
}
private static void write(String password) throws Exception {
OutputStream target = new FileOutputStream("out.zip");
target = new CipherOutputStream(target, createCipher(Cipher.ENCRYPT_MODE, password));
ZipOutputStream output = new ZipOutputStream(target);
ZipEntry e = new ZipEntry("filename");
output.putNextEntry(e);
output.write("helloWorld".getBytes());
output.closeEntry();
e = new ZipEntry("filename1");
output.putNextEntry(e);
output.write("helloWorld1".getBytes());
output.closeEntry();
output.finish();
output.flush();
}
private static Cipher createCipher(int mode, String password) throws Exception {
String alg = "PBEWithSHA1AndDESede"; //BouncyCastle has better algorithms
PBEKeySpec keySpec = new PBEKeySpec(password.toCharArray());
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(alg);
SecretKey secretKey = keyFactory.generateSecret(keySpec);
Cipher cipher = Cipher.getInstance("PBEWithSHA1AndDESede");
cipher.init(mode, secretKey, new PBEParameterSpec("saltsalt".getBytes(), 2000));
return cipher;
}
private static void read(String password) throws Exception {
InputStream target = new FileInputStream("out.zip");
target = new CipherInputStream(target, createCipher(Cipher.DECRYPT_MODE, password));
ZipInputStream input = new ZipInputStream(target);
ZipEntry entry = input.getNextEntry();
while (entry != null) {
System.out.println("Entry: "+entry.getName());
System.out.println("Contents: "+toString(input));
input.closeEntry();
entry = input.getNextEntry();
}
}
private static String toString(InputStream input) throws Exception {
byte [] data = new byte[1024];
StringBuilder result = new StringBuilder();
int bytesRead = input.read(data);
while (bytesRead != -1) {
result.append(new String(data, 0, bytesRead));
bytesRead = input.read(data);
}
return result.toString();
}
}
关于java - 如何在 Java 中打包/加密/解包/解密一堆文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1730237/
我是一名优秀的程序员,十分优秀!