日期格式
为什么无法改变日期格式
相关代码:
DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH-mm-sss");
List<Category> newList = new ArrayList<>();
for (Category category : categoryList) {
Date date = null;
try {
String string = sdf.format(category.getCreateTime());
date = sdf.parse("2018-09-07 12-08-000");
System.out.println(string);
System.out.println(date);
} catch (ParseException e) {
e.printStackTrace();
}
if (date != null) {
category.setCreateTime(date);
}
newList.add(category);
}
System.out.println(newList);
13
收起
正在回答 回答被采纳积分+1
1回答
java工程师2020版
- 参与学习 人
- 提交作业 9393 份
- 解答问题 16556 个
综合就业常年第一,编程排行常年霸榜,无需脱产即可学习,北上广深月薪过万 无论你是未就业的学生还是想转行的在职人员,不需要基础,只要你有梦想,想高薪
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星