I need to package a configuration file within a jar. the configuration file is under the root of the jar file. However I got the following error:
Cau
You should use getResourceAsStream() instead. If the file is embedded in your JAR the URI is most likely bundle:// URI
InputStream is = this.getClass().getResourceAsStream("my.conf");