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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. package com.heima.test;

  2. import java.io.BufferedOutputStream;
  3. import java.io.FileNotFoundException;
  4. import java.io.FileOutputStream;
  5. import java.io.IOException;
  6. import java.util.Scanner;

  7. public class Test3 {

  8.         /**
  9.          * @param args
  10.          *
  11.          *
  12.          * 分析:
  13.          * 1,创建键盘录入对象
  14.          * 2,创建输出流对象,关联text.txt文件
  15.          * 3,定义无限循环
  16.          * 4,遇到quit退出循环
  17.          * 5,如果不quit,就将内容写出
  18.          * 6,关闭流
  19.          * @throws IOException
  20.          */
  21.         public static void main(String[] args) throws IOException {
  22.                 Scanner sc = new Scanner(System.in);
  23.                 System.out.println("请输入数据:");
  24.                 BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("text.txt"));
  25.                 while (true) {
  26.                         String line = sc.nextLine();
  27.                         if ("quit".equals(line)) {
  28.                                 break;
  29.                         }
  30.                         bos.write(line.getBytes());
  31.                         bos.write("\r\n".getBytes());
  32.                 }
  33.                 bos.close();       
  34.                
  35.         }

  36. }
复制代码

0 个回复

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