Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 jar 文件(一个 api),我需要从中加载一个存在于 WEB-INF 文件夹中的属性文件。我如何从我的 jar 加载这个属性文件。
将不胜感激任何帮助。
如果您的属性文件位于WEB-INF/classes. 在这种情况下,只需编写类似
WEB-INF/classes
Properties props = new Properties(); props.load(getClass().getResourceAsStream("/myprops.properties"));
显然该文件可能位于classes. 在这种情况下,您必须在调用时指定完整路径getResourceAsStream()。
classes
getResourceAsStream()