我在“资源/json/模板”文件夹中有一些Json文件。我想阅读这些Json文件。到目前为止,下面的代码片段允许我在IDE中运行程序时这样做,但当我在jar中运行它时它失败了。
JSONParser parser = new JSONParser();
ClassLoader loader = getClass().getClassLoader();
URL url = loader.getResource(templateDirectory);
String path = url.getPath();
File[] files = new File(path).listFiles();
PipelineTemplateRepo pipelineTemplateRepo = new PipelineTemplateRepoImpl();
File templateFile;
JSONObject templateJson;
PipelineTemplateVo templateFromFile;
PipelineTemplateVo templateFromDB;
String templateName;
for (int i = 0; i < files.length; i++) {
if (files[i].isFile()) {
templateFile = files[i];
templateJson = (JSONObject) parser.parse(new FileReader(templateFile));
//Other logic
}
}
}
catch (Exception e) {
e.printStackTrace();
}
任何帮助都将不胜感激。
多谢。
假设在类路径中,在jar中,目录以 /json开头(/Resource是根目录),它可能是这样的:
URL url = getClass().getResource("/json");
Path path = Paths.get(url.toURI());
Files.walk(path, 5).forEach(p -> System.out.printf("- %s%n", p.toString()));
这使用 jar:file://...
URL,并在其上打开一个虚拟文件系统。
检查jar是否确实使用了该路径。
阅读可以根据需要进行。
BufferedReader in = Files.newBufferedReader(p, StandardCharsets.UTF_8);
首先,请记住,Jars 是 Zip 文件,因此如果不解压缩它,您将无法从中获取单个文件
。Zip 文件并不完全有目录,因此它不像获取目录的子级那么简单。
这有点难,但我也很好奇,经过研究,我得出了以下结论。
首先,您可以尝试将资源放入嵌套在 Jar 中的平面 Zip 文件(resource/json/templates.zip
),然后从该 zip 文件加载所有资源,因为您知道所有 zip 条目都是您想要的资源。这应该即使在 IDE 中也应该有效。
String path = "resource/json/templates.zip";
ZipInputStream zis = new ZipInputStream(getClass().getResourceAsStream(path));
for (ZipEntry ze = zis.getNextEntry(); ze != null; ze = zis.getNextEntry()) {
// 'zis' is the input stream and will yield an 'EOF' before the next entry
templateJson = (JSONObject) parser.parse(zis);
}
或者,您可以获取正在运行的Jar,迭代其条目,并收集resource/json/templates/
的子条目,然后从这些条目中获取流。注意:这只在运行Jar时有效,添加一个检查以在IDE中运行其他东西。
public void runOrSomething() throws IOException, URISyntaxException {
// ... other logic ...
final String path = "resource/json/templates/";
Predicate<JarEntry> pred = (j) -> !j.isDirectory() && j.getName().startsWith(path);
try (JarFile jar = new Test().getThisJar()) {
List<JarEntry> resources = getEntriesUnderPath(jar, pred);
for (JarEntry entry : resources) {
System.out.println(entry.getName());
try (InputStream is = jar.getInputStream(entry)) {
// JarEntry streams are closed when their JarFile is closed,
// so you must use them before closing 'jar'
templateJson = (JSONObject) parser.parse(is);
// ... other logic ...
}
}
}
}
// gets ALL the children, not just direct
// path should usually end in backslash
public static List<JarEntry> getEntriesUnderPath(JarFile jar, Predicate<JarEntry> pred)
{
List<JarEntry> list = new LinkedList<>();
Enumeration<JarEntry> entries = jar.entries();
// has to iterate through all the Jar entries
while (entries.hasMoreElements()) {
JarEntry entry = entries.nextElement();
if (pred.test(entry))
list.add(entry);
}
return list;
}
public JarFile getThisJar() throws IOException, URISyntaxException {
URL url = getClass().getProtectionDomain().getCodeSource().getLocation();
return new JarFile(new File(url.toURI()));
}
我希望这有所帮助。