我正在使用 JDK 7,并尝试使用以下代码执行简单的写入文件操作:
import java.io.BufferedWriter;
import java.io.FileWriter; // JAVA says this is conflicting...why?
FileWriter fw = new FileWriter("hello.txt");
BufferedWriter bw = new BufferedWriter(fw); // JAVA says this is an error and asks me to convert FileWriter to type Writer.
我正在使用 JDK 7,这就是我一直使用 Java 写入文件的方式,但这是 JDK 7 中的第一个,它不起作用。
有人可以解释为什么吗?