- package cn.itcast;
- import java.text.ParseException;
- import java.text.SimpleDateFormat;
- import java.util.Date;
- /*
- * 数据中有这样一个字符串
- * String stringTime = "1997-07-01 00:00:00",
- *
- * 我们希望获取这个字符串表示的时间对象.然后把这个时间打印出来给英国人看.
- *
- */
- public class DateFormatTest2 {
- public static void main(String[] args) throws ParseException {
-
- String stringTime = "1997-07-01 00:00:00";
- //1. 创建格式化对象,需要指定解析时使用的格式
- SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
-
- //String -- Date 解析 parse
- //2. 调用格式化对象的parse()
- Date date = sdf.parse(stringTime);
-
- System.out.println(date);
- }
- }
复制代码 |
|