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

I'm getting the filenotfoundexception on my apps directory but my directory clearly exists. I'm doing this on my local machine. I'm doing a very simple post to a servlet. Does anyone knw what could be happening?

share|improve this question
2  
can you post your code – objects Mar 4 '10 at 3:44

3 Answers

up vote 2 down vote accepted

it turns out this was due to my firewall (firestarter) blocking my servers ip address. I allowed the exception and everything worked.

share|improve this answer

A few of thoughts (hopefully you haven't tried them :-):

Do you have read access to the directory?

Try putting in something like:

System.out.println("the directory = " + directory);

Assuming "directory" is the File variables that holds the directory.

Try putting in something like:

System.out.println("the directory exists = " + directory.exists());

and making sure it returns true.

share|improve this answer

Do you have traversal authority to all intervening path segments, and appropriate authority to the final file?

share|improve this answer

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.