http://www.7-Zip.org/sdk.html このサイトはファイルの圧縮/解凍用のLZMA SDKを提供しています。試してみたいのですが、迷子になりました。
誰もがこれを経験しましたか?またはチュートリアル?ありがとう。
短い答え:しないでください
7Zip sdkは古く、保守されておらず、C++ライブラリの単なるJNIラッパーです。最新のJVM(1.7+)での純粋なJava実装は、C++のものと同じくらい高速であり、依存性と移植性の問題が少なくなっています。
ご覧ください http://tukaani.org/xz/Java.html
XZは、LZMA2(LZMAの改良版)に基づくファイル形式です。
XZ形式を発明した人たちは、XZアーカイブ圧縮/抽出アルゴリズムの純粋なJava実装を構築します
XZファイル形式は、1つのファイルのみを保存するように設計されています。したがって、最初にソースフォルダを単一の非圧縮ファイルにzip/tarする必要があります。
Javaライブラリの使用は、次のように簡単です。
FileInputStream inFile = new FileInputStream("src.tar");
FileOutputStream outfile = new FileOutputStream("src.tar.xz");
LZMA2Options options = new LZMA2Options();
options.setPreset(7); // play with this number: 6 is default but 7 works better for mid sized archives ( > 8mb)
XZOutputStream out = new XZOutputStream(outfile, options);
byte[] buf = new byte[8192];
int size;
while ((size = inFile.read(buf)) != -1)
out.write(buf, 0, size);
out.finish();
投稿したリンクから、ZipファイルのJava/SevenZipフォルダーにあるLzmaAlone.JavaファイルとLzmaBench.Javaファイルを確認してください。
J7Zipを使用します。そのa Java LZMA SDKのポート。ここにあります:
http://sourceforge.net/projects/p7Zip/files/J7Zip/
代替
LzmaInputStreamクラスとLzmaOutputStreamクラスでlzmajio.jarを使用します
あなたはそれをgithubで見つけます:
代わりに this ライブラリを使用できます。それは「時代遅れ」ですが、それでも正常に動作します。
Maven依存関係
<dependency>
<groupId>com.github.jponge</groupId>
<artifactId>lzma-Java</artifactId>
<version>1.2</version>
</dependency>
ユーティリティクラス
import lzma.sdk.lzma.Decoder;
import lzma.streams.LzmaInputStream;
import lzma.streams.LzmaOutputStream;
import org.Apache.commons.compress.utils.IOUtils;
import Java.io.*;
import Java.nio.file.Path;
public class LzmaCompressor
{
private Path rawFilePath;
private Path compressedFilePath;
public LzmaCompressor(Path rawFilePath, Path compressedFilePath)
{
this.rawFilePath = rawFilePath;
this.compressedFilePath = compressedFilePath;
}
public void compress() throws IOException
{
try (LzmaOutputStream outputStream = new LzmaOutputStream.Builder(
new BufferedOutputStream(new FileOutputStream(compressedFilePath.toFile())))
.useMaximalDictionarySize()
.useMaximalFastBytes()
.build();
InputStream inputStream = new BufferedInputStream(new FileInputStream(rawFilePath.toFile())))
{
IOUtils.copy(inputStream, outputStream);
}
}
public void decompress() throws IOException
{
try (LzmaInputStream inputStream = new LzmaInputStream(
new BufferedInputStream(new FileInputStream(compressedFilePath.toFile())),
new Decoder());
OutputStream outputStream = new BufferedOutputStream(
new FileOutputStream(rawFilePath.toFile())))
{
IOUtils.copy(inputStream, outputStream);
}
}
}
まず、圧縮を開始するコンテンツを含むファイルを作成する必要があります。 this Webサイトを使用してランダムなテキストを生成できます。
圧縮と解凍の例
Path rawFile = Paths.get("raw.txt");
Path compressedFile = Paths.get("compressed.lzma");
LzmaCompressor lzmaCompressor = new LzmaCompressor(rawFile, compressedFile);
lzmaCompressor.compress();
lzmaCompressor.decompress();
XZ Utils pure Javaライブラリを使用して、LZMA2圧縮アルゴリズムを使用してXZアーカイブを大きな比率でパックおよびアンパックするテスト例を次に示します。
import org.tukaani.xz.*;
// CompressXz
public static void main(String[] args) throws Exception {
String from = args[0];
String to = args[1];
try (FileOutputStream fileStream = new FileOutputStream(to);
XZOutputStream xzStream = new XZOutputStream(
fileStream, new LZMA2Options(LZMA2Options.PRESET_MAX), BasicArrayCache.getInstance())) {
Files.copy(Paths.get(from), xzStream);
}
}
// DecompressXz
public static void main(String[] args) throws Exception {
String from = args[0];
String to = args[1];
try (FileInputStream fileStream = new FileInputStream(from);
XZInputStream xzStream = new XZInputStream(fileStream, BasicArrayCache.getInstance())) {
Files.copy(xzStream, Paths.get(to), StandardCopyOption.REPLACE_EXISTING);
}
}
// DecompressXzSeekable (partial)
public static void main(String[] args) throws Exception {
String from = args[0];
String to = args[1];
int offset = Integer.parseInt(args[2]);
int size = Integer.parseInt(args[3]);
try (SeekableInputStream fileStream = new SeekableFileInputStream(from);
SeekableXZInputStream xzStream = new SeekableXZInputStream(fileStream, BasicArrayCache.getInstance())) {
xzStream.seek(offset);
byte[] buf = new byte[size];
if (size != xzStream.read(buf)) {
xzStream.available(); // let it throw the last exception, if any
throw new IOException("Truncated stream");
}
Files.write(Paths.get(to), buf);
}
}
https://mvnrepository.com/artifact/org.tukaani/xz/1.8
Android用のKotlinコード:
fun initDatabase() {
var gisFile = this.getDatabasePath("china_gis.db");
if (!gisFile.exists()) {
if(!gisFile.parentFile.exists()) gisFile.parentFile.mkdirs();
var inStream = assets.open("china_gis_no_poly.db.xz")
inStream.use { input ->
val buf = ByteArray(1024)
XZInputStream(input).use { input ->
FileOutputStream(gisFile,true).use { output ->
var size: Int
while (true) {
size = input.read(buf);
if (size != -1) {
output.write(buf, 0, size)
} else {
break;
}
}
output.flush()
}
}
}
}
}
Javaコード:
byte[] buf = new byte[8192];
String name = "C:\\Users\\temp22\\Downloads\\2017-007-13\\china_gis_no_poly.db.xz";
try {
InputStream input = new FileInputStream(name);
FileOutputStream output= new FileOutputStream(name+".db");
try {
// Since XZInputStream does some buffering internally
// anyway, BufferedInputStream doesn't seem to be
// needed here to improve performance.
// in = new BufferedInputStream(in);
input = new XZInputStream(input);
int size;
while ((size = input.read(buf)) != -1)
output.write(buf, 0, size);
output.flush();
} finally {
// Close FileInputStream (directly or indirectly
// via XZInputStream, it doesn't matter).
input.close();
output.close();
}
} catch (FileNotFoundException e) {
System.err.println("XZDecDemo: Cannot open " + name + ": "
+ e.getMessage());
System.exit(1);
} catch (EOFException e) {
System.err.println("XZDecDemo: Unexpected end of input on "
+ name);
System.exit(1);
} catch (IOException e) {
System.err.println("XZDecDemo: Error decompressing from "
+ name + ": " + e.getMessage());
System.exit(1);
}