Java 类在 Jar 中读取 Yaml

Java Class Read a Yaml Inside Jar(Java 类在 Jar 中读取 Yaml)
本文介绍了Java 类在 Jar 中读取 Yaml的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我正在尝试从 jar 中的另一个类读取我的 jar 中的文件.但是我不断收到相同的错误: Caught: class java.io.FileNotFoundException while trying to read metrics: metrics.yml

I am trying to read a file inside my jar from another class inside the jar. However I am continually getting the same error: Caught: class java.io.FileNotFoundException while attempting to read metrics: metrics.yml

起初我让我的代码做这样的事情,假设它来自类的路径:

At first I had my code do something like this, assuming it was from the path of the class:

String yamlPath = ".." + File.separator + ".." + File.separator + ".." + File.separator + ".." + File.separator + "myYaml.yml";

InputStream in = new FileInputStream(new File(yamlPath));
InputStreamReader isr = new InputStreamReader(in);
BufferedReader input = new BufferedReader(isr);
yamlObj = (HashMap) javaYAML.load(input);

我也这样做了,假设它可能会从罐子底部走路径:

I also did this assuming it might take the path from the base of the jar:

String yamlPath = "myYaml.yml";

InputStream in = new FileInputStream(new File(yamlPath));
InputStreamReader isr = new InputStreamReader(in);
BufferedReader input = new BufferedReader(isr);
yamlObj = (HashMap) javaYAML.load(input);

然后我注意到了这个线程 How to read a file fromjar in Java? 发现我的路径前需要一个/".我也使用斜线尝试了上述两种方法.

I then noticed this thread How to read a file from jar in Java? and found out that I needed a "/" before my path. I tried both methods above using the slash as well.

String yamlPath = File.seperator + ".." + File.separator + ".." + File.separator + ".." + File.separator + ".." + File.separator + "myYaml.yml";

OR

String yamlPath = File.seperator + "myYaml.yml";

我现在完全不知道如何处理这个错误.关于 jar 结构有什么我没有得到的吗?为什么找不到我的文件.提前感谢您提供任何帮助/信息.

I am completely lost on what to do about this error now. Is there something I am not getting about the jar structure? Why can my file not be found. Thanks in advance for any help / information.

抱歉,我忘了提到它在 JAR 中的位置:该类位于以下路径中:com/a/b/c/myclass.classyaml 位于以下路径:myYaml.yml

Sorry, I forgot to mention where it is in the JAR: The class is in the following path: com/a/b/c/myclass.class The yaml is in the following path: myYaml.yml

推荐答案

Jar里面的文件不再是File,用这个改变inputStream的创建

File inside Jar is no longer a File, Change inputStream creation with this

InputStream in = YourClass.class.getResourceAsStream("myYaml.yml");

假设您的 .yml 文件位于 jar 的根目录

Assuming your .yml file is at root of jar

这篇关于Java 类在 Jar 中读取 Yaml的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)
How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)
Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)
Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)
How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)
How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)