Java教程

西农大 Java实习 实验六 输入输出流 习题一

本文主要是介绍西农大 Java实习 实验六 输入输出流 习题一,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

实验题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对象
 */

这篇关于西农大 Java实习 实验六 输入输出流 习题一的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!