我认为您使用zip文件的方法很有意义。大概您将对
getResourceAsStreamzip的内部进行 *** 作,该zip在逻辑上看起来像是目录树。
骨架方法:
InputStream is = getClass().getResourceAsStream("my_embedded_file.zip");ZipInputStream zis = new ZipInputStream(is);ZipEntry entry;while ((entry = zis.getNextEntry()) != null) { // do something with the entry - for example, extract the data }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)