这是漫长而烦人的一天,我有代码可以创建和写入文件,还会在文件末尾附加日期和时间。但我一定是改变了一些东西,我一辈子都看不到我做错了什么。
如果有人能指出我犯的简单错误,那就太好了。
SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy / hh-mm-ss");
Date curDate = new Date();
String stringDate = sdf.format(curDate);
String resultLogFile = "resultsFile " + stringDate;
File resultsFile = new File(Environment.getExternalStorageDirectory() + resultLogFile);
if (!resultsFile.exists())
{
try
{
resultsFile.createNewFile();
}
catch (IOException e)
{
e.printStackTrace();
}
}
try
{
BufferedWriter buf = new BufferedWriter(new FileWriter(resultsFile, true));
buf.append(writeToFileString);
buf.newLine();
buf.close();
}
catch (IOException e)
{
e.printStackTrace();
}