问题就是“文件的输入与输出”。首先我不明白为什么要读取文件以及读取文件的作用是什么,其次我也不清楚如何自己确定输出文件中的内容。自己写的下面的这段代码只能够输出一个0KB的指定文件名文件……
Java code:
import java.io.*;
import java.util.*;
public class FileOpt
{
public static void main(String[] args) throws FileNotFoundException
{
PrintWriter out = new PrintWriter("test.txt");
String ChineseDate = String.format("%1$s%5$tY%2$s%5$tm%3$s%5$td%4$s %5$tA","今天是","年","月","日", new Date());
String ChineseTime = String.format("%1$s%2$tT","现在时刻 北京时间", new Date());
out.println(ChineseDate);
out.println(ChineseTime);
out.println("abc");
}
}
上面这段代码(不要说我闲大了没事用一大串printf来试验,只是因为我之前写了几个printf的,而且都已成功编译运行 - -)会输出一个空白的test.txt,我想问的是,PrintWriter这个命令到底是干什么用的?最下面那几行out...那些用得对吗?
|