分割されたファイル(file.part1、file.part2、file.part3 ...)を解凍したい。すべてのパーツを同じフォルダーに入れました。インターネットでは、1つのファイルを解凍する方法の例しか見つかりませんでした。
それを行うためのAPIがあるかどうか誰かが知っていますか?
圧縮 API は、Android の Java から変更されていません。Java では、マルチボリューム ファイルを簡単に解凍できます。私はいくつかのJavaコードを投稿しています.Android上で実行できるはずです.
public class Main {
public static void main(String[] args) throws IOException {
ZipInputStream is = new ZipInputStream(new SequenceInputStream(Collections.enumeration(
Arrays.asList(new FileInputStream("test.zip.001"), new FileInputStream("test.zip.002"), new FileInputStream("test.zip.003")))));
try {
for(ZipEntry entry = null; (entry = is.getNextEntry()) != null; ) {
OutputStream os = new BufferedOutputStream(new FileOutputStream(entry.getName()));
try {
final int bufferSize = 1024;
byte[] buffer = new byte[bufferSize];
for(int readBytes = -1; (readBytes = is.read(buffer, 0, bufferSize)) > -1; ) {
os.write(buffer, 0, readBytes);
}
os.flush();
} finally {
os.close();
}
}
} finally {
is.close();
}
}
}
コードは、ここで見つけることができる古い SO の質問からのものです。