I was trying to load a file in a webapp, and I was getting a FileNotFound exception when I used FileInputStream. However, using the same path, I was able to load the file when I did getResourceAsStream(). What is the difference between the two methods, and why does one work while the other doesn't?
| |||
|
feedback
|
|
The
However, the working directory is in no way programmatically controllable. You should really prefer using absolute paths in the You don't want to hardcode or guess the absolute path in Java (web)applications. That's only portability trouble (i.e. it runs in system X, but not in system Y). The normal practice is to place those kind of resources in the classpath, or to add its full path to the classpath (in an IDE like Eclipse that's the Another alternative in webapps is the | ||||
|
feedback
|
|
getResourceAsStream is the right way to do it for web apps (as you already learned). The reason is that reading from the file system cannot work if you package your web app in a WAR. This is the proper way to package a web app. It's portable that way, because you aren't dependent on an absolute file path or the location where your app server is installed. | |||||||||||
feedback
|
|
FileInputStream will load a the file path you pass to the constructor as relative from the working directory of the Java process. Usually in a web container, this is something like the getResourceAsStream() will load a file path relative from your application's classpath. | |||
|
feedback
|
|
The | |||||
feedback
|
|
classname.getResourceAsStream() loads a file via the classloader of classname. If the class came from a jar file, that is where the resource will be loaded from. FileInputStream is used to read a file from the filesystem. | |||
|
feedback
|