简单日期格式字符串
2022-09-03 09:25:05
我有这个代码块,其中参数将永远是一个,这就是为什么我在这里这样做。我收到错误“无法将给定对象格式化为日期”。dateFormat.format
string
.toString()
有没有办法做到这一点?请注意,字符串来自数据库,我在这里使用新的Date()作为示例。
SimpleDateFormat dateFormat = new SimpleDateFormat("MMMMM dd, yyyy");
String sCertDate = dateFormat.format(new Date().toString());