import java.io.*; /*字符输入流 Reader 方法说明: 1. 读取整个字符数组 :public int reader(char[] cubf) 返回读取的字符长度 ,到结尾返回 -1 2. 读取部分字符串 :public int reader(char[] cubf, int off, int len) Reader是一个抽象类,需要一个FileWriter子类。 */ public class testDemo{ public static void main(String args[]) throws IOException{ //定义要读取的文件的一个路径 File file = new File("e:" + File.separator +"Demo"+File.separator+ "text.txt"); if(file.exists()){ //文件存在 Reader in = new FileReader(file); char data[] = new char [1024]; int len = in.read(data); in.close(); //关闭!!! System.out.println(new String(data,0,len)); } //其他功能略... } }