日期格式错误
在 new Date() 下;它有一个错误。我想将其作为文件名放置。
日期日期 = 新日期();
SimpleDateFormat dateFormat = new SimpleDateFormat("ddMMyyyyHHmmSS"); 文件名 = dateFormat.format(date).concat(".jpg");
Under new Date(); it has an error. I want to place it as a file name.
Date date = new Date();
SimpleDateFormat dateFormat = new SimpleDateFormat("ddMMyyyyHHmmSS");
filename = dateFormat.format(date).concat(".jpg");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我希望下面的代码能够正常工作。我测试了它没有错误。
日期日期 = 新日期();
SimpleDateFormat dateFormat = new SimpleDateFormat("ddMMyyyyHHmmSS");
String 文件名 = dateFormat.format(date).concat(".jpg");
I hope that the following code will work fine.I tested it has no error.
Date date = new Date();
SimpleDateFormat dateFormat = new SimpleDateFormat("ddMMyyyyHHmmSS");
String filename = dateFormat.format(date).concat(".jpg");