SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
这样会出现12小时制的时间
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
这样是24小时的时间。
标签:new simple orm class post date 日期格式 pos 日期
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
这样会出现12小时制的时间
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
这样是24小时的时间。
标签:new simple orm class post date 日期格式 pos 日期
原文地址:https://www.cnblogs.com/faker2014/p/8321917.html