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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© IT我的梦 中级黑马   /  2015-4-15 23:19  /  217 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. /*
  2. 程序名:DemoBufferedInput.java
  3. 功能:主要实现过滤流的一些作用。
  4. 程序员:李显福
  5. */
  6. import java.io.*;
  7. import java.util.*;
  8. class DemoBufferedInput
  9. {
  10.         public static void main(String[] args) throws IOException
  11.         {
  12.                 File f1=new File("e.doc");
  13.                 f1.createNewFile();
  14.                 FileOutputStream fos1=new FileOutputStream("e.doc");
  15.                 BufferedOutputStream bos1=new BufferedOutputStream(fos1);
  16.                 Scanner sc=new Scanner(System.in);
  17.                 do
  18.                 {
  19.                         System.out.println("请输入数据:");
  20.                         bos1.write(sc.nextLine().getBytes());
  21.                         System.out.println('\n');
  22.                 }while(sc.nextLine().compareToIgnoreCase("0")!=0);
  23.                 bos1.flush();
  24.                 bos1.close();
  25.         }
复制代码

0 个回复

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