小编典典

jar文件文件夹中的资源列表?

tomcat

通常,我从jar文件读取资源,如下所示:

getClassLoader().getResource(pTextPath + "/" + pLang +".xml");

我需要从jar文件的已知文件夹中读取所有具有特定名称的资源。例如从读取* .xml

插件/资源/文本

我可以根据路径和名称模板从jar文件列表中获取资源吗?

更新: 完全重复从classpath目录中获取资源列表请关闭问题。


阅读 276

收藏
2020-06-16

共1个答案

小编典典

CodeSource src = MyClass.class.getProtectionDomain().getCodeSource();
if (src != null) {
URL jar = src.getLocation();
ZipInputStream zip = new ZipInputStream(jar.openStream());
/ Now examine the ZIP file entries to find those you care about. /

}
else {
/ Fail… /
}

2020-06-16