I wrote a class that writes a simple text file.
I packaged it in a signed
applet and now it will not write the file.
public void writeFile(
String text,String name) {
try{
File outputFile = new File(name);
FileWriter out = new FileWriter(outputFile);
out.write(text);
out.close();
}
catch(IOException e){
System.out.println("ReadWriteUtility write error: " + e);
}
}
Worked fine before but not when I put it in a signed jar.