标签:parse 符号 stat imp sys string 解析 字符串 字符
先介绍构造函数(参见API)
SimpleDateFormat(String pattern)
用给定的模式和默认语言环境的日期格式符号构造 SimpleDateFormat
。
Date转字符串:
public static void main(String[] args) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date date = new Date();
String s1 = sdf.format(date);
sdf = new SimpleDateFormat("yyyy年MM月dd日");
String s2 = sdf.format(date);
System.out.println(s1);
System.out.println(s2);
}
结果:
2017-05-25
2017年05月25日
字符串转日期(解析)
public static void main(String[] args) {
String s1 = "2017-5-25";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
try {
//格式不匹配时将会抛出异常
Date date = sdf.parse(s1);
System.out.println(date.getTime());//1495641600000
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
标签:parse 符号 stat imp sys string 解析 字符串 字符
原文地址:http://www.cnblogs.com/jiangbei/p/6905832.html