jar文件夹中的资源列表?

时间:2011-10-31 12:19:25

标签: java tomcat servlets resources jar

通常我从jar文件中读取资源如下:

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

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

读取* .xml
  

附加/资源/文本

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

更新Get a list of resources from classpath directory的完全重复请关闭此问题。

1 个答案:

答案 0 :(得分:4)

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... */
}