Skip to Content
0
Former Member
Dec 28, 2007 at 12:03 PM

Again: UDF: Load file from "imported archives"

31 Views

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