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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 郑强强 中级黑马   /  2012-4-10 17:41  /  1285 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

import java.io.*;
public class myTest{
        public static void main(String []args){
                BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
                String s=new String("");
            //while(true){
            
                try{
                        PrintStream out=new PrintStream(new FileOutputStream("my.txt"));
                        str=br.readLiine();
                        System.setOut(out);
                        System.out.println(str);
                }
                catch(FileNotFoundException e){
                        System.err.print("file not found");
                }
                catch(IOException e){
                        e.printStackTrace();
                }
          
        }
}

我想循环向指定文件输入信息,可是运行完之后指定文件里什么也没有!当注释掉while的时候却能输入一行信息!哪位兄弟姐妹可以指点一下啊


评分

参与人数 1技术分 +1 收起 理由
贠(yun)靖 + 1

查看全部评分

2 个回复

倒序浏览
你每一次循环都新建了一个同名的文件my.txt,把上一次的文件给替换了,并且最后一次替换完文件,文件时空的写到数据没有刷到内存,所以硬盘上的文件没有数据。应该写成这样PrintStream out=new PrintStream(new FileOutputStream("my.txt"),true);或者把PrintStream out=new PrintStream(new FileOutputStream("my.txt"));写到while循环外部。建议写到while循环外,避免重复创建文件流对象。

评分

参与人数 1技术分 +1 收起 理由
贠(yun)靖 + 1

查看全部评分

回复 使用道具 举报
路过。。。7
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马