5黑马币
最佳答案我试着来回答一下吧。。。
/**
*思路:使用FileInputStream,然后自定义缓存,但不用再用FileOutputStream进行写入了
*注意:使用IO流的时候,要处理异常IOException(Thread.sleep()也意味着要抛出异常了)
*/
public class Program {
public static void main(String[] args) throws IOException {
try{
FileInputStream fis = new FileInputStream("d:/exercise.txt");
//定义一个缓冲字符组
char[] chars = ...
| |
| |
| |
点评
厉害!
| |
| |