2

我在 SD 卡上创建文本文件以附加到要通过 gmail 应用程序发送的电子邮件时遇到问题。当附加到 gmail 应用程序中的电子邮件时,该电子邮件将永远处于红色的“正在发送...”状态。该文件是使用下面的 createCSVfile() 创建的。

调试我的代码,在不同的时间启动我的应用程序,csv_file.exists() 总是返回 false,就好像找不到文件并且每次运行应用程序时都会创建该文件一样。但是,使用文件管理器,我可以看到文件在运行之间和运行期间存在。

请问有什么帮助吗?谢谢

File csv_file = null;
String createCSVfile() {
    if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) {
        csv_file = new File( getExternalFilesDir(null) + File.separator + "InOutStats.txt");
        if (csv_file != null ) {
            if( csv_file.exists() ){
                Log.v("CSV_FILE", "Stat file " + csv_file.toString() +" already there!");
            }else{
                csv_file.getParentFile().mkdirs();
                try {
                    boolean bool = csv_file.createNewFile();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            FileWriter fWriter = null;
            try {
                fWriter = new FileWriter(csv_file);
            } catch (IOException e) {
                e.printStackTrace();
            }
            BufferedWriter writer = new BufferedWriter(fWriter);
            try {
                writer.write("Some text here!!! " + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(System.currentTimeMillis()));
                writer.newLine();
            } catch (IOException e) {
                e.printStackTrace();
            }
            try {
                writer.flush();
                writer.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }else{
        Log.v("CSV_FILE", "NO SD CARD HERE???");
    }
    return csv_file.toString();
}
4

1 回答 1

0

错误是:

new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(System.currentTimeMillis())

应该是

new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())

我只看到两个非常小的“错误”:

[风格问题]

csv_file = new File( getExternalFilesDir(null) + File.separator + "InOutStats.txt");

应该

csv_file = new File( getExternalFilesDir(null), "InOutStats.txt");

因为否则你正在使用File.toString().

【最小码】

删除的应该是:

csv_file.createNewFile();

第二次尝试

尝试更换

    if (csv_file != null ) {
        if( csv_file.exists() ){
            Log.v("CSV_FILE", "Stat file " + csv_file.toString() +" already there!");
        }else{
            csv_file.getParentFile().mkdirs();
            try {
                boolean bool = csv_file.createNewFile();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

     {

这将删除存在测试、mkdirs 和不需要的单独文件创建。完成以尝试限制错误区域。

此外,您正在使用文本的默认平台编码;你可以明确表示:

new FileWriter(csv_file, "UTF-8")
于 2012-06-10T00:48:40.440 回答