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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© ″先森丶玹° 中级黑马   /  2013-11-29 18:09  /  1353 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 ″先森丶玹° 于 2013-11-30 22:05 编辑
  1.         
  2.         public static void writeCode() throws IOException {

  3.                 OutputStreamWriter osw=new OutputStreamWriter(new FileOutputStream("D:\\IO测试专用\\其他流\\change.txt"),"GBK");
  4.                
  5.                 osw.write("编程思想");
  6.                
  7.                 osw.close();
  8.                
  9.         }
  10.         
  11.         public static void readCode() throws IOException {
  12.                 InputStreamReader isr=new InputStreamReader(new FileInputStream("D:\\IO测试专用\\其他流\\change.txt"),"GBK");
  13.                
  14.                 char[] buf=new char[1024];
  15.                
  16.                 int length=isr.read(buf);
  17.                
  18.                 sop(new String(buf,0,length));
  19.                
  20.                 isr.close();
  21.         }
复制代码


问题:为什么int length=isr.read(buf);
               
                sop(new String(buf,0,length));
这里不需要用while循环来读取?
while((length.read(buf))!=-1){
sop(new String(buf,0,length));}
这样的

评分

参与人数 1技术分 +1 收起 理由
简★零度 + 1

查看全部评分

3 个回复

倒序浏览
一般都要while的,是你这个例子因为文本文件里就4个汉字,为了省事没写吧。
回复 使用道具 举报
就这么几个字节,一次就都读取到了
回复 使用道具 举报
问题解决了就把类型改成提问结束1
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马