When I run a Java application that should be reading from a file in Eclipse, I get a java.io.FileNotFoundException, even though the file is in the correct directory. I can compile and run the application from the command line just fine; the problem only occurs in Eclipse, with more than one project and application. Is there a setting I need to change in the run configurations or build paths to get it to find the file correctly?
|
|
||||
|
|
The problem is most likely that your application is using a relative pathname. As @BalusC says, relative pathnames can be problematic. But IMO, he goes way too far when he says "[y]ou should never use relative paths in java.io stuff". When an application opens a file using (for example) the
So immediately, we see that the notion of "current directory" has different nuances on Windows and UNIX platforms. The second issue is that in pure Java you cannot definitively find out what the current directory is, and you certainly cannot change it for the current JVM using pure Java. (When the JVM starts, the "user.dir" system property is set to the current directory, but there is nothing stopping an application from changing the property so you cannot entirely rely on it. Furthermore, changing "user.dir" only changes the way that the empty path is resolved, not relative paths in general.) So what should you do about this?
In the particular case of Eclipse, there is a simple solution. Go to the "run configuration" that you are using to launch your application, open the "Arguments" tab, and click the "Other" radio button. Then enter an absolute pathname as the working directory for the launched application. When the child JVM is launched, it will have the specified working directory as its current directory. |
|||||||||
|
|
When you create a default Java application in Eclipse, you get this directory structure: ./ProjectName/ - root directory If your application requests "./data.txt" it will search for it relative to the root directory. This is the "working directory" and can be configured in the arguments tab as per Martin's reply above. You say it works from the command line? This is likely because you're inside either the bin or src folders when you run the java binary. The working directory in this case is whichever directory the command prompt is currently inside. If, for example, you go into the /src/ directory, say |
|||
|
|
You should never use relative paths in Whenever you'd like to ship some files along with your application, a common practice is to place them in the classpath as well. This way you can just use In your Eclipse project, the Assuming that you've placed the particular file in the root of the classpath:
You can even use
If it's placed inside a package, then you can just use the usual pathnames:
or
|
|||||||||||||
|
|
I was having a similar problem , I placed my files in a folder named cobolcopybooks inside the src folder and tried to access them inside my project using classloader.getResource("cobolcopybooks/demostud.cob") but i was getting null pointer exception,i tried it several times by cleaning and building the workspaces after several failed attempts i realised that i was not refreshing the project to allow the files to get built along with the project. i.e these files should be visible along with other class files as at runtime the root directory will be bin directory and it's searching for those files there. |
|||
|
|
|
Assuming the user does not enter the full file path to the file
and enter something like "myfilenameonly".
All platforms: If you create the File "myfilenameonly" without specifying the full path
to the directory where it is located, the See further: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=1228537 |
||||
|
|