如果是 javac 编译 然后运行的话, 就会在根目录出现创建的文件, 可是通过 jsp 调用这个 servlet 就失败了。。 这是什么原因呢?
public static void writeToFile(String data)throws Exception{
{
String filename= "abc";
FileWriter fw = new FileWriter(filename,true); //the true will append the new data
fw.write(data);//appends the string to the file
fw.close();
}
}