I have this peace of code to load a text file inside of a servlet
:
String lFileName = mServletContext.getRealPath(mFile);
InputStream lInputStream = mServletContext.getResourceAsStream(lFileName);
InputStream lInputStream2 = mServletContext.getResourceAsStream(mFile);
Both InputStream's
are null
. I have absolutly no idear why.
The value of mFile
is "file.txt"
.
The value of lFile
is "C:\development\workspace\MyGwtApp\war\file.txt"
.
if I navigate with my explorer to that directory the file file.txt
is in it...!
I test my gwt application with the super dev mode
.
Compile the gwt app runs without problems.
Do you see the problem?