博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字符串日期如何转化为Date类型?
阅读量:5762 次
发布时间:2019-06-18

本文共 747 字,大约阅读时间需要 2 分钟。

使用SimpleDateFormat、DateFormat 和java.sql.Date进行转化,java.sql.Date只能转化日期部分,而不能转化时间部分。

import java.text.DateFormat;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

 

String time="2017-4-8 20:53:30";

SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
DateFormat df=DateFormat.getDateTimeInstance();
try {
  Date date1=format.parse(time);
  Date date2=df.parse(time);
  System.out.println(format.format(date1));
  System.out.println(format.format(date2));
} catch (ParseException e) {
  e.printStackTrace();
}
java.sql.Date sdate=java.sql.Date.valueOf("2017-4-8");

Date date3=new Date(sdate.getTime());

System.out.println(format.format(date3));

转载于:https://www.cnblogs.com/bdqnhhm/p/6683056.html

你可能感兴趣的文章