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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 香草芭芙 中级黑马   /  2014-10-14 21:03  /  1161 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 香草芭芙 于 2014-10-15 03:23 编辑
  1. package com.itheima.day18;

  2. import java.io.*;

  3. public class FileWriterDemo3
  4. {
  5.         public static void main(String[] args) throws IOException
  6.         {
  7.                 FileWriter fw = new FileWriter("demo.txt", true);
  8.                 fw.write("abcd\r\n");
  9.         
  10.                 FileReader fr = new FileReader("demo.txt");
  11.               
  12.       
  13.                 for (int ch = fr.read(); ch != -1; ch = fr.read())
  14.                 {
  15.                         System.out.print((char) ch);
  16.                 }
  17.            
  18.                 int ch = 0;
  19.                 while ((ch = fr.read()) != -1)
  20.                 {
  21.                         System.out.print((char) ch);
  22.                 }
  23.                
  24.                 // -------------------------------------------------
  25.                 fr.close();
  26.                 fw.close();
  27.         }
  28. }
复制代码

1 个回复

倒序浏览
本帖最后由 HM2014nuli 于 2014-10-15 08:09 编辑

int ch=0;    do   {       ch=fr.read();        System.out.println((char)ch);   }      while ((ch=fr.read())!=-1);你试下这样
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马