使用PrintWriter将字符串写入日志文件

时间:2013-07-12 19:13:23

标签: java io printwriter

我有一个java应用程序需要将大量数据写入文本文件中的各行。我写了下面的代码来做这件事,但由于某种原因,它没有写任何文本文件。它确实创建了文本文件,但程序运行完毕后文本文件仍为空。任何人都可以告诉我如何修复下面的代码,以便它实际上填充输出文件的输出行数与调用它一样多吗?

public class MyMainClass{    
    PrintWriter output;

    MyMainClass(){    
        try {output = new PrintWriter("somefile.txt");}    
        catch (FileNotFoundException e1) {e1.printStackTrace();}    
        anotherMethod();
    }    

    void anotherMethod(){
        output.println("print some variables");
        MyOtherClass other = new MyOtherClass();
        other.someMethod(this);
    }
}

public class MyOtherClass(){
    void someMethod(MyMainClass mmc){
        mmc.output.println("print some other variables")
    }
}

3 个答案:

答案 0 :(得分:1)

使用其他构造函数:

output = new PrintWriter(new FileWriter("somefile.txt"), true);

根据JavaDoc

  

public PrintWriter(Writer out, boolean autoFlush)

     

创建一个新的PrintWriter。

     

<强>参数:

     

out - 字符输出流   
   autoFlush - 布尔值;如果为true,则println,printf或format方法将刷新输出缓冲区

答案 1 :(得分:1)

使用其他构造函数new PrintWriter(new PrintWriter("fileName"), true)自动刷新数据或 完成写作后,请使用flush()close()

答案 2 :(得分:1)

你如何做到这一点对我来说似乎很奇怪。为什么不编写一个接受字符串然后将其写入文件的方法?像这样的东西应该可以正常工作

public static void writeToLog(String inString)
{
    File f = new File("yourFile.txt");
    boolean existsFlag = f.exists();

    if(!existsFlag)
    {
        try {
            f.createNewFile();
        } catch (IOException e) {
            System.out.println("could not create new log file");
            e.printStackTrace();
        }

    }

    FileWriter fstream;
    try {
        fstream = new FileWriter(f, true);
         BufferedWriter out = new BufferedWriter(fstream);
         out.write(inString+"\n");
         out.newLine();
         out.close();
    } catch (IOException e) {
        System.out.println("could not write to the file");
        e.printStackTrace();
    } 


    return;
}