SimpleDateFormat 相关用法
parse(String s)返回的是一个Date类型数据,format(Date d)返回的是一个String类型的数据
SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd");
//SimpleDateFormat中的format方法可以
//把Date型的字符串转换成特定格式的String类型
String oldDateStr = sd.format(new Date());
System.out.println(oldDateStr);
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//SimpleDateFormat中的parse方法可以
//把String型的字符串转换成特定格式的date类型
Date newDate=format.parse(oldDateStr+" 23:59:59");
System.out.println(newDate);
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
String newDateStr=sdf.format(newDate);
System.out.println(newDateStr);
output:
如果你真心觉得文章写得不错,而且对你有所帮助,那就不妨小小打赏一下吧,如果囊中羞涩,不妨帮忙“推荐"一下,您的“推荐”和”打赏“将是我最大的写作动力!
本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接.