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 中引用文件?因为现在它只是在 jar 文件所在的目录中查找文件。
我已将文件正确打包到 jar 中,但我不确定如何引用它。
URL url = getClass().getResource("..../.../..."); InputStream in = getClass().getResourceAsStream("..../.../...");
绝对(“/...”)或相对于 getClass。
请参阅 Class.getResourceAsStream API