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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 唐诗三百首 初级黑马   /  2019-4-3 14:06  /  702 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class Dome06 {
    public static void main(String[] args) throws IOException {
        FileOutputStream fos=new FileOutputStream("d:\\info.txt",true);
        Scanner s=new Scanner(System.in);
        boolean bl=true;
        while (bl) {
            System.out.println("请输入录入信息:");
            String s1 = s.nextLine();
            if (s1.equals("886")){
                System.out.println("谢谢使用。再见");
                bl=false;
            }else {
                fos.write(s1.getBytes());
                fos.write("\r\n".getBytes());
                System.out.println("添加成功,请在文件中查看,输入886退出");
            }

        }
    }
}

0 个回复

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