FileWriter(String fileName, boolean append)
建構函式具有以下語法。
public FileWriter(String fileName, boolean append) throws IOException
在下面的程式碼中展示了如何使用FileWriter.FileWriter(String fileName, boolean append)
建構函式。
import java.io.FileWriter;
// Copyright: W W w.Y I IB AI.c o M
public class Main {
public static void main(String[] args) throws Exception {
FileWriter fileWriter = new FileWriter("c:/abc.txt",true);
fileWriter.append("tw511.com");
fileWriter.close();
}
}