DateFormat错误

时间:2010-09-01 06:07:38

标签: android date-format

在新日期()下;它有一个错误。我想把它作为文件名。

日期日期=新日期();

SimpleDateFormat dateFormat = new SimpleDateFormat(“ddMMyyyyHHmmSS”); filename = dateFormat.format(date).concat(“。jpg”);

1 个答案:

答案 0 :(得分:2)

我希望以下代码能正常工作。我测试它没有错误。 日期日期=新日期(); SimpleDateFormat dateFormat = new SimpleDateFormat(“ddMMyyyyHHmmSS”); String filename = dateFormat.format(date).concat(“。jpg”);