实验题1
阅读下面程序,叙述其功能。
[基本要求] 运行程序,并写出本题程序关键程序(1-7)的功能。
package first; import java.io.FileReader; import java.io.IOException; public class First { /** Defines the entry point of the program. */ public static void main(String[] args) { System.out.println("Please enter the file path:"); try { String fileName = ""; while (true) { /* 1. */ int readByte = System.in.read(); /* 2. */ if (readByte == -1 || readByte == '\r') break; /* 3. */ fileName += (char) readByte; } // Reads the file and prints it to the System.out stream. /* 4. */ char[] buffer = new char[20]; /* 5. */ FileReader reader = new FileReader(fileName); while (true) { /* 6. */ int length = reader.read(buffer); if (length < 0) // Reads a long as there is more data. break; /* 7. */ String text = new String(buffer, 0, length); System.out.print(text); } } catch (IOException e) { e.printStackTrace(); } } } /* * 1. 读取键盘上输入的单个字符 * 2. 判断输入的是不是一个字符 * 3. 将字符合成文件名 * 4. 声明一个字符数组 * 5. 创建一个访问文件的字符输入流对象 * 6. 字符读取,如果读到文件末尾,并将字符放入字符数组中,返回-1 * 7. 用文件中的字符创建一个String对象 */