What is the fastest way to extract 1 file from a zip file which contain a lot of file?
问题 I tried the java.util.zip package, it is too slow. Then I found LZMA SDK and 7z jbinding but they are also lacking something. The LZMA SDK does not provide a kind of documentation/tutorial of how-to-use, it is very frustrating. No javadoc. While the 7z jbinding does not provide a simple way to extract only 1 file, however, it only provide way to extract all the content of the zip file. Moreover, it does not provide a way to specify a location to place the unzipped file. Any idea please??? 回答1