用java怎么写一个这样的程序,就是自己给一个文件的地址的那种
try {
FileWriter fw=new FileWriter("txt.html");
fw.write("挺简单的");
fw.close();
} catch (IOException e) {
e.printStackTrace();
}