1

我的代码非常标准.. sReport 包含我想输出到文本文件的文本,它包含几个“\n”换行符,可以在文本视图中很好地呈现,但在文本文件中它们不存在。一定有一些简单的东西我错过了..

    try {
        FileOutputStream fOut = new FileOutputStream(sDir + sFile);
        //write  
        fOut.write( sReport.getBytes() );
        // Close output stream
        fOut.flush();
        fOut.close();
    } catch (IOException  e) {
        e.printStackTrace();
    }
4

1 回答 1

0

请查看内容并记住 Android 是基于 Linux 的。

于 2010-08-16T15:38:56.147 回答