免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2196 | 回复: 1
打印 上一主题 下一主题

求助一个IO缓冲输入的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-12-22 12:57 |只看该作者 |倒序浏览
想用缓冲方式,实现键盘输入,以“quit”结束,然后将输入写到test.txt中,下列代码有问题,请问如何实现?谢谢


  1. import java.io.BufferedInputStream;
  2. import java.io.BufferedOutputStream;
  3. import java.io.File;
  4. import java.io.FileNotFoundException;
  5. import java.io.FileOutputStream;
  6. import java.io.IOException;


  7. public class Test {

  8.         public static void main(String[] args)
  9.         {
  10.                 File file = new File("C:\\test.txt");
  11.                 BufferedInputStream bis = new BufferedInputStream(System.in);
  12.                 byte data[] = new byte[4];
  13.                 try {
  14.                         BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(file));

  15.                         while((bis.read(data) != -1) && (!(new String(data)).equals("quit")))
  16.                         {
  17.                                 bos.write(data);
  18.                         }
  19.                        
  20.                         bos.flush();
  21.                        
  22.                         bis.close();
  23.                         bos.close();
  24.                        
  25.                 } catch (FileNotFoundException e) {
  26.                         e.printStackTrace();
  27.                 }
  28.                 catch (IOException e) {
  29.                         e.printStackTrace();
  30.                 }
  31.         }
  32. }

复制代码

[ 本帖最后由 blackcar 于 2008-12-22 13:25 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-12-22 17:14 |只看该作者
你所说的问题是什么?我刚试验了下,只发现“回车”会出现乱码,其他的没法现。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP