i have a requirement of extracting a zip file but the problem is that
the zip file contains nested filders and files are present in that folders
say like scr-->main-->helloword.class
the util.zip only works when there is just files in zip format , but in my case there are folder,
the util.zip is not working
can you have any alternative to this ?
You don't need an alternative. Java and the java.util.zip package is perfectly capable of dealing with folders within archives. I expect you haven't written your code to do that.
Paul Clapham wrote:You don't need an alternative. Java and the java.util.zip package is perfectly capable of dealing with folders within archives. I expect you haven't written your code to do that.
this is the code
what else should i do
to get that functionality up