我有一个第三方jar,其中包含许多我想要处理的xml文件。我不知道名字或号码 xml文件,但我知道它们在jar中打包的文件夹。
URL url = this.class.getResource("/com/arantech/touchpoint/index");
System.out.println(url.toString());
这似乎返回了一个有效的文件(文件夹)路径
jar:file:/home/.m2/repository/com/abc/tp-common/5.2.0/tp-common-5.2.0.jar!/com/abc/tp/index
但是当我尝试列出文件夹中的文件时,我总是得到一个NullPointerException
File dir = new File(url.toString());
System.out.println(dir.exists());
System.out.println(dir.listFiles().length);
任何指导?
答案 0 :(得分:1)
这样你可以遍历主文件夹:
URL url = this.class.getResource("/com/arantech/touchpoint/index");
JarFile jar;
System.out.println("Loading JAR from: " + url.toString());
JarURLConnection URLcon = (JarURLConnection)(url.openConnection());
jar = URLcon.getJarFile();
Enumeration<JarEntry> entries = jar.entries();
while (entries.hasMoreElements())
{
JarEntry entry = (JarEntry) entries.nextElement();
if (entry.isDirectory() || !entry.getName().toLowerCase().endsWith(".xml"))
continue;
InputStream inputStream = null;
try
{
inputStream = jar.getInputStream(entry);
if (inputStream != null)
{
// TODO: Load XML from inputStream
}
}
catch (Exception ex)
{
throw new IllegalArgumentException("Cannot load JAR: " + url);
}
finally
{
if (inputStream != null)
inputStream.close();
}
}
jar.close();
答案 1 :(得分:0)
Jar是一个Zip文件,因此可以使用以下内容列出Jar中的文件:
ZipFile zipFile = new ZipFile("your.jar");
Enumeration<? extends ZipEntry> zipEntries = zipFile.entries();
while (zipEntries.hasMoreElements()) {
System.out.println(zipEntries.nextElement().getName());
}
ZipEntry.getName()包含输入路径(虽然没有记录),因此您可以使用String.startsWith("your/path")之类的内容检测出所需的输入路径。