先介绍构造函数(参见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(); } }
时间: 2024-10-12 09:10:36