java使用SimpleDateFormat实现字符串和日期的相互转换
Posted 背起全世界の蜗牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java使用SimpleDateFormat实现字符串和日期的相互转换相关的知识,希望对你有一定的参考价值。
public class TimeTwo {
public static void main(String[] args) throws ParseException{
String s = "2018-08-12 12:02:23";
//使用SimpleDateFormat实现字符串和日期的相互转换
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒");
System.out.println("转换前的日期:"+s);
//字符串转换数字,parse函数
Date date = sdf2.parse(s);
System.out.println("字符串类型的日期:"+date);
//字符串格式化
String newS = sdf1.format(date);
System.out.println("Date类型的日期:"+newS);
}
}
以上是关于java使用SimpleDateFormat实现字符串和日期的相互转换的主要内容,如果未能解决你的问题,请参考以下文章
SimpleDateFormat 的 format 方法使用具体解释
使用SimpleDateFormat类来实现时间跟字符串的转化
为啥我不能在 java 中使用 SimpleDateFormat 得到正确的年份?
Java之StringBuffer,StringBuilder,Math,Date,SimpleDateFormat,UUID,File