given a zip file with multiple nested directory structure, how do I unzip it into the same tree structure? does ZipFile.entries() provide the enumeration in any order?
|
Zip doesn't offer directory structure per se. The tree alike structure is built by having full path of each entry. ZipFile enumerates the entries in the same way they have been added to the file. Note: java.util.ZipEntry.isDirectory() just tests if the last character of the name is '/', that's how it works. What you need to extract the files into the same directory. Parse then name like that:
That shall do it more or less (you still need to take care of duplicate file names, etc) |
||||
|
|
|
This is mine. In file you specify the file you want to expand in target dir you have to specify the target location as "new File("/tmp/foo/bar")". If you want to extract in the current directory you can specify targetDir = new File(".")
Worked for me. Good luck. |
|||||||
|
|
|||
|
|
|
Here's the one I use all the times. It should directly work after a copy/paste and in any circumstances.
|
|||
|
|
|
Why do you care about order? If the ZipFile entry has a name |
|||
|
|
