I've tried your application with both openjdk 8 and 11 on MacOS and it does not work with both. I think you need to look at [1] and [2] in order to understand how getResourceAsStream
works.
TLDR:
If the path is absolute (i.e. starts with a slash - /
), then class.getResourceAsStream()
searches in the provided path
If the path is NOT absolute (i.e. does not start with a slash) , then class.getResourceAsStream()
searches in a constructed path that corresponds to the package name, where the dots are replaced with slashes
So whether it works or not depends on 2 things:
- Is your path absolute or not ?
- Is the
file
located in the same package as the class or not ?
Basically in your exaple as is provided, it can never work if the path is not absolute, because Class.class.getResourceAsStream()
will always resolve the path to java/lang/<file>
, so your file must be in a system package. So instead you must use <MyClass>.class.getResourceAsStream()
or alternatively use an absolute path
[1] https://docs.oracle.com/javase/7/docs/api/java/lang/ClassLoader.html#getResource(java.lang.String)
[2] https://docs.oracle.com/javase/7/docs/api/java/lang/Class.html#getResource%28java.lang.String%29
Update
Since Java SE 9, invoking getResourceXXX on a class in a named module will only locate the resource in that module, it will not search the class path as it did in previous release. So when you use Class.class.getResourceAsStream()
it will attempt to locate the resource in module containing java.lang.Class
, which is the java.base
module. Obviously your resource is not in that module, so it returns null.
You have to make java 9+ search for the file in your module, which most probably is an "unnamed module". You can do that by changing Class
to any class defined in your module in order to make java use the proper class loader.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…