标签:
import java.io.*;
public class Writer {
public static void main(String [] args){
FileWriter fw = null;
try{
fw=new FileWriter("1.txt");
}catch(IOException e){
e.toString();
}
try{
fw.write("abcedfg1ert");
}catch(IOException e){
e.toString();
}
try{
fw.close();
}catch(IOException e){
e.toString();
}
}
}
标签:
原文地址:http://www.cnblogs.com/striver-lm/p/5726704.html