package ioDemo;
import java.io.FileWriter;
import java.io.IOException;
public class FileWriterDemo {
public static void main(String[] args) {
FileWriter fw = null;
try {
fw = new FileWriter("demo.txt");
fw.write("abcd");
} catch (IOException e) {
System.out.println(e.toString());
}
finally{
try {
fw.close();
} catch (IOException e2) {
System.out.println(e2.toString());
}
}
}
}
|
|