我将如何读取打包文件?
我有一个打包在 JAR 文件中的文件,但我不知道如何读取该文本文件并将其存储到字符串变量中。 有人有什么想法吗?
I have a file that I packaged in my JAR file, but I can't figure out how I would read the text file and store it into a String variable.
Any ideas anyone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我会推荐
java.lang.Class#getResource(java.lang.String)
或者
java.lang .Class#getResourceAsStream(java.lang.String)
I would recommend
java.lang.Class#getResource(java.lang.String)
or
java.lang.Class#getResourceAsStream(java.lang.String)
这种方法适用于任何 jar 文件,即使它不在您当前的项目/库/类路径中:
This approach would work for any jar file, even if it's not in your current project/library/classpath:
您可以使用 URLClassLoader 访问以下资源JAR 存档。
You can use a URLClassLoader to access resources in a JAR archive.