Fredrik Claesson
Fredrik Claesson
The decompression speed of 7-Zip-JBinding-4Android is directly dependent to the implementations of the underlying [7-Zip-JBinding](http://sevenzipjbind.sourceforge.net/) and [7-Zip](https://www.7-zip.org/links.html) libraries. However, you would want to ensure that you are using [IInArchive.extract()](https://sevenzipjbind.sourceforge.net/javadoc/net/sf/sevenzipjbinding/IInArchive.html#extract(int[],%20boolean,%20net.sf.sevenzipjbinding.IArchiveExtractCallback)) rather...
I created the following project and included your sample code: https://github.com/omicronapps/Archive3 This works fine after adding just a couple of lines of code that were missing in your sample code....
Sure. Please feel free to open a pull request with changes to README.md.
Thank you for the pull request. However, I would not want to replace the default English README file with another language. If you can add these changes to a separate...
You will need to store the extracted data somehow, for example by writing to file with [FileOutputStream](https://developer.android.com/reference/java/io/FileOutputStream). See changes to example below. (This does not take into account folders in...
For testing this, you can place your zip-file in the 'assets' folder of your project: - MyApp\app\src\main\assets\apk-debug.zip And then run `TestExtract.testExtract()`. ``` package com.myapp; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.util.Log;...
No problem. Then just read the file from [getFilesDir()](https://developer.android.com/reference/android/content/Context#getFilesDir()) or wherever you have stored it. Example below. Do **not** use hardcoded paths, such as "/storage/emulated/0/Android/cd/apk-debug.zip". These are not guaranteed to...
Great! This library is a straight Android wrapper for the [7-Zip-JBinding](https://sevenzipjbind.sourceforge.net/) Java library, and provides the same functionality and APIs as the Java counterpart. But improvements are encouraged, and you...
This library, "[7-Zip-JBinding-4Android](https://github.com/omicronapps/7-Zip-JBinding-4Android)", is a port for Android devices of the Java library called "[7-Zip-JBinding](https://sevenzipjbind.sourceforge.net/)". The Android version only implements the same functionality as the Java library, nothing more, nothing...
Tested this as follows: I created a 7z-archive using [7-Zip](https://www.7-zip.org/) for Windows, that included both folder name and file name with kanji characters. I used Japanese for this particular test,...