gpt4 book ai didi

java - 资源加载: How to determine if it's a directory

转载 作者:行者123 更新时间:2023-12-02 09:36:27 33 4
gpt4 key购买 nike

目前我使用这个解决方案来加载资源:

URL url = MyClass.class.getClassLoader().getResource("documents/"+path);
if(url == null)
throw new FileNotFoundException();

BufferedReader reader = new BufferedReader(
new InputStreamReader(url.openStream()));

遗憾的是,我无法控制 path 是文件还是目录。有什么方法可以确定指定的路径是否是目录?我正在寻找一个独立于资源加载位置的解决方案(换句话说:File.isFile 从 JAR 加载资源时将不起作用)。

最佳答案

我使用此代码从 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()]);
}

关于java - 资源加载: How to determine if it's a directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11266016/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com