Reading zipx in java

Any suggestions for a tool / object / utility for reading a .zipx file in java?

You have already looked over. I need a C # library for zipx and http://www.winzip.com/comp_info.htm

+3
source share
2 answers

The ZIPX format seems to be a regular ZIP container , just using compression methods other than DEFLATE.

This means that you can use the regular Java ZipFile class to retrieve the content byte[], but depending on the value ZipEntry.getMethod()you will have to use classes without the JDK to unpack.

Compression methods and Java support:

: Java . , -open-source .

, Chilkat, , ZIPX.

, WinZip , ZIPX .

+4

​​, , WinZip command line, java.lang.Runtime#exec(..)

0

Source: https://habr.com/ru/post/1764268/


All Articles