Hi,
I have used a jar file to house the class files for an
applet,
and in the applet i want to read a txt file.
I am thinking that (as
java seems to treat the jar file as a subdirectory) it would be the same as calling a file from a parent directory.
I've tried:
input = new BufferedReader(new FileReader("..\\data.txt");
but this doesn't seem to do the trick. can anyone help
Thanx, Brad.