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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I would recommend java.lang.Class#getResource(java.lang.String) or java.lang.Class#getResourceAsStream(java.lang.String) |
|||
|
|
|
This approach would work for any jar file, even if it's not in your current project/library/classpath:
|
|||||||||||
|
|
You can use a URLClassLoader to access resources in a JAR archive. |
|||
|
|