java使用格式String型转成Date型
Posted 背起全世界の蜗牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java使用格式String型转成Date型相关的知识,希望对你有一定的参考价值。
public class TimeTwo {
public static void main(String[] args) throws ParseException{
String s = "2018-08-12 12:02:23";
SimpleDateFormat g = new SimpleDateFormat("yyyy-MM-dd MM:mm:ss");
try{
Date h = g.parse(s);
// System.out.println(h);
}catch (ParseException e){
e.printStackTrace();
}
//格式String型转成Date型
DateFormat format3 = DateFormat.getDateInstance(DateFormat.LONG,Locale.SIMPLIFIED_CHINESE);
try{
System.out.println("日期:"+format3.format(new Date()));
}catch (Exception e){
e.printStackTrace();
}
}
}
以上是关于java使用格式String型转成Date型的主要内容,如果未能解决你的问题,请参考以下文章