目前我使用此解决方案来加载资源:
URL url = MyClass.class.getClassLoader().getResource("documents/"+path);
if(url == null)
throw new FileNotFoundException();
BufferedReader reader = new BufferedReader(
new InputStreamReader(url.openStream()));
遗憾的是,我无法控制path
是文件还是目录。有什么方法可以确定表示的路径是否是目录?我正在寻找一个独立于资源加载位置的解决方案(换句话说:从JAR加载资源时File.isFile
不起作用)。
答案 0 :(得分:0)
我使用此代码从jar中获取文本文件的名称。
public String[] getFiles() throws IOException {
ArrayList<String> list = new ArrayList<String>();
List<JarEntry> ents = new ArrayList<JarEntry>();
Enumeration<JarEntry> e = null;
URL jarp = getLocation();
if (jarp != null) {
jar = jarp.getProtocol().equalsIgnoreCase("jar") ? jarp : new URL("jar:" + jarp.toString() + "!/");
JarFile jarf = null;
try {
jarf = AccessController.doPrivileged(
new PrivilegedExceptionAction<JarFile>() {
@Override
public JarFile run() throws Exception {
JarURLConnection conn = (JarURLConnection) jar.openConnection();
conn.setUseCaches(false);
return conn.getJarFile();
}
});
} catch (PrivilegedActionException ex) {
Logger.getLogger(LicenseLoader.class.getName()).log(Level.SEVERE, null, ex);
}
e = jarf.entries();
while (e.hasMoreElements()) {
JarEntry je = e.nextElement();
if (!je.isDirectory()) {
ents.add(je);
}
}
for (JarEntry ent : ents) {
if ((ent.getName().startsWith(pathName)) && (ent.getName().endsWith(".txt"))) {
String name = ent.getName().replace(pathName, "");
list.add(name);
}
}
}
return list.toArray(new String[list.size()]);
}