the returned InputStream is null. What will be the possible cause?
|
a)
b)
|
|||
|
|
|
The "actual dir" is in the folder/package your class is in. Correct usage:
Or maybe:
|
|||
|
|
The cause is usually that the file could not be found. (Rarely, it is that your app does not have read permission.) Typical problems here are that you need a leading path indicator (perhaps just |
|||||||
|
I assume that you actually know what the classpath is, and how it is set. And what a classloader it. If so, read on ... The class path defines a namespace of resources with hierarchical names like "/a/b/c/d", or "/some/pkg/SomeClass.class". I'll call this the classloader namespace. When you call the There are two kinds of path that you can give: absolute paths start with a "/", and relative paths start with some other character than "/".
This should tell you how to work out where to put the "test.properties" file so that it can be located by the call you are using. Alternatively, you could use an absolute name. |
||||
|
|
|
To avoid such thing should make practice to put all your properties file under root context. So that you can access them from any child folder by
|
|||
|
|