How to read zipped xml files using java
I am having a zip file with lot of xml files. I am having some data which I have to check with the xml files content and which ever xml file content matches with that data I have to extr开发者_JAVA百科act that file only and store that in a folder.
Guide me to achieve this.
Thanking you.
--raaja.g
Check out javas ZipFile
and ZipEntry
classes.
精彩评论