「Java入門」ZIPファイルをリストに変換するサンプル

2018年9月3日

Javaコード
ZipFile zip = null;
zip = new ZipFile(“example.zip");
Enumeration<? extends ZipEntry> cft=zip.entries();
List<String> lst=new ArrayList<String>();
while(cft.hasMoreElements()){
lst.addAll(zipListFile((ZipEntry)cft.nextElement()));
}

Java

Posted by arkgame