This content has been marked as final.
Show 2 replies
-
1. Re: Path to Server Root
Utah Jazz Oct 31, 2005 4:44 PM (in response to P V)You could create an emtpy file:
try{
File nf = new File("infilename.xml");
FileWriter fw = new FileWriter(nf);
fw.write("where am i");
fw.close();
System.out.println("done");
}catch(Exception e){
System.out.println(e);
}
and then go search for it to see where it got written to. Just an idea. -
2. Re: Path to Server Root
P V Nov 2, 2005 11:22 AM (in response to P V)"utjazz" wrote:
You could create an emtpy file:
try{
File nf = new File("infilename.xml");
FileWriter fw = new FileWriter(nf);
fw.write("where am i");
fw.close();
System.out.println("done");
}catch(Exception e){
System.out.println(e);
}
and then go search for it to see where it got written to. Just an idea.
That's a very good solution.
thanks, Pedro