i am trying to open the file with the fallowing code:

BufferedReader input =  new BufferedReader(new
FileReader("blabla.txt"));

it works while developping with eclipse.
and i am trying to write whit the fallowing:

BufferedWriter out = new BufferedWriter(new FileWriter("blabla.txt"));
out.write(liste);
out.close();

both works fine on eclipse.
when i upload to server the first one gives a long error message
saying "file not found" in tomcat log file as i mentioned before.
second one gives onli on word in tomcat log "Exception".

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to