Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a text file text.txt located in the classes output root directory.

When I use new File("text.txt"), i received the java.io.FileNotFoundException.

My output structure is liking

com
    mycompany
         test.class
text.txt

Anything wrong and how to fix?

share|improve this question

3 Answers

up vote 5 down vote accepted

When you don't give an absolute location for a file it searches from where you launched the program (your working directory). So, launch your application in the same directory as that file or move the file to where ever you are launching from.

If you want to read a file relative to your classpath however, you need to do something like this...

reader = new BufferedReader(new InputStreamReader(
    getClass().getClassLoader().getResourceAsStream("test.txt")));
share|improve this answer
I am launching inside the eclipse, but still don't know where to put this file inside if using relative path. – user496949 Mar 5 '11 at 2:30
2  
you can give a working directory in your project run properties under the arguments tab. The default is the root project folder. – Andrew White Mar 5 '11 at 2:33
You are right! Thanks. BTW, how to give the working directory argument, is it project_path? – user496949 Mar 5 '11 at 2:39

It will use the current working directory. From the Java documentation (http://download.oracle.com/javase/1.4.2/docs/api/java/io/File.html#File%28java.lang.String%29):

By default the classes in the java.io package always resolve relative pathnames against the current user directory. This directory is named by the system property user.dir, and is typically the directory in which the Java virtual machine was invoked.

share|improve this answer

new File("text.txt") is relative to your working directory. You could use this.getClass().getResourceAsStream("text.txt") to load a file from the classpath.

share|improve this answer
How do I know my working directory? – user496949 Mar 5 '11 at 2:31
You said in another comment that you're using Eclipse. You can set the working directory in the arguments tab of the launch configuration dialog. – Isaac Truett Mar 5 '11 at 2:36
yeah, just want to know which veriable to use to set the working directory. – user496949 Mar 5 '11 at 2:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.