A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© ℃葫芦 中级黑马   /  2015-8-15 19:33  /  372 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. package cn.itcast.p3.io.filereader;

  2. import java.io.FileNotFoundException;
  3. import java.io.FileReader;
  4. import java.io.IOException;

  5. //需求:读取一个文本文件。将读取到的字符打印到控制台.

  6. public class FileReaderDemo {

  7.         /**
  8.          * @param args
  9.          * @throws IOException
  10.          */
  11.         public static void main(String[] args) throws IOException {

  12.                
  13.                 //1,创建读取字符数据的流对象。
  14.                 /*
  15.                  * 在创建读取流对象时,必须要明确被读取的文件。一定要确定该文件是存在的。
  16.                  *
  17.                  * 用一个读取流关联一个已存在文件。
  18.                  */
  19.                 FileReader fr = new FileReader("demo.txt");
  20.                
  21.                 int ch = 0;
  22.                
  23.                 while((ch=fr.read())!=-1){
  24.                         System.out.println((char)ch);
  25.                 }
  26.                
  27.                 /*
  28.                 //用Reader中的read方法读取字符。
  29.                 int ch = fr.read();
  30.                 System.out.println((char)ch);
  31.                 int ch1 = fr.read();
  32.                 System.out.println(ch1);
  33.                 int ch2 = fr.read();
  34.                 System.out.println(ch2);
  35.                 */
  36.                
  37.                 fr.close();
  38.         }

  39. }
复制代码


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马