无法写入文件

时间:2012-12-09 18:33:37

标签: java file-io

我需要一些帮助,请将输出写入文件,我无法让它工作。如果我使用System.out.println它的工作原理。如果我在实际方法中创建文件流和Buffered Writer,它会创建文件,但不会向其写入任何内容。我假设它是因为我的方法是递归的,并且每次方法再次调用它时都会创建一个新文件。所以我创建了另一个print方法,并使用字符串值key [i]作为字符串参数,它什么也没做。

感谢任何帮助,谢谢。

 public void print(String s)throws IOException
{
    fstream = new FileWriter("out.txt", true);
    out = new BufferedWriter(fstream);

    try{
        out.write("From print: " + s + " ");
        out.close();
    }catch (Exception e){//Catch exception if any
        System.err.println("Error: " + e.getMessage());
    }
}

public void generate() throws IOException
{ 
    while (k<randomWordNum())
    {
        if (randomNum() <= sumOfFreq[0])
        {
            //System.out.println(getKey[0] + " "); 
            print(getKey[i]);
            i++;
            k++;
            generate();
        }
        if (randomNum() >= sumOfFreq[i] && randomNum() <= sumOfFreq[i+1])
        {
            //System.out.println("From generate: " + getKey[i+1] + " "); 
            print(getKey[i+1]);
            i++;
            k++;
            generate();
        }
        else
        {
            i++;
            generate();
        }
    }//while
}//generate

2 个答案:

答案 0 :(得分:3)

您需要.close文件以确保写入内容

答案 1 :(得分:1)

我认为FileWriter的构造函数会覆盖该文件。所以你需要使用这样的代码行:

fstream = new FileWriter("out.txt", true); // true for appending

此外,在文件超出范围之前总是关闭文件,否则如果你运气不好,它可能永远不会被刷新或关闭......

还有一件事,假设这不是某种调试/故障排除代码,“永远不会”捕获Exception。如果你确实抓到它,一定要重新扔它,因为你在记录后得到它或者你用它做了什么。但是,通常,总是捕获更具体的异常类型。