我知道如何创建zip存档:
import java.io.*;
import java.util.zip.*;
public class ZipCreateExample{
public static void main(String[] args) throws Exception
// input file
FileInputStream in = new FileInputStream("F:/sometxt.txt");
// out put file
ZipOutputStream out = new ZipOutputStream(new FileOutputStream("F:/tmp.zip"));
// name the file inside the zip file
out.putNextEntry(new ZipEntry("zippedjava.txt"));
// buffer size
byte[] b = new byte[1024];
int count;
while ((count = in.read(b)) > 0) {
System.out.println();
out.write(b, 0, count);
}
out.close();
in.close();
}
}
但我不知道如何使用lzma压缩。
我发现这个项目:https://github.com/jponge/lzma-java创建压缩文件,但我不知道如何将其与现有解决方案结合起来。
答案 0 :(得分:2)
最新版本的Apache Commons Compress(2013年10月23日发布的1.6)支持LZMA压缩。
查看http://commons.apache.org/proper/commons-compress/examples.html,特别是有关.7z压缩/解压缩的内容。
例如,假设您想要存储来自HTTP响应的html页面,并且您想压缩它:
SevenZOutputFile sevenZOutput = new SevenZOutputFile(new File("outFile.7z"));
File entryFile = new File(System.getProperty("java.io.tmpdir") + File.separator + "web.html");
SevenZArchiveEntry entry = sevenZOutput.createArchiveEntry(entryFile, "web.html");
sevenZOutput.putArchiveEntry(entry);
sevenZOutput.write(rawHtml.getBytes());
sevenZOutput.closeArchiveEntry();
sevenZOutput.close();
答案 1 :(得分:0)
您提到的网站有一个例子:
适应您的需求:
final File sourceFile = new File("F:/sometxt.txt");
final File compressed = File.createTempFile("lzma-java", "compressed");
final LzmaOutputStream compressedOut = new LzmaOutputStream.Builder(
new BufferedOutputStream(new FileOutputStream(compressed)))
.useMaximalDictionarySize()
.useEndMarkerMode(true)
.useBT4MatchFinder()
.build();
final InputStream sourceIn = new BufferedInputStream(new FileInputStream(sourceFile));
IOUtils.copy(sourceIn, compressedOut);
sourceIn.close();
compressedOut.close();
(我不知道它是否有效,它只是使用了库和你的代码片段)
答案 2 :(得分:0)
zip4jvm支持zip存档的LZMA压缩。
git merge patch