Hi everybody,
I tried to read a txt-File from the "imported archives".
The following does not work:
try {
+ FileInputStream fstream = new FileInputStream(Filename);+
+ DataInputStream in = new DataInputStream(fstream);+
+ BufferedReader br = new BufferedReader(new InputStreamReader(in));+
} catch (Exception e) {// Catch exception if any
+ return "Error: " + e.getMessage();+
}//catch
return "test";
I get the error:
abc.txt (No such file or directory)
Any ideas?
regards Mario