在Java里我们可以通过SimpleDateFormat实现日期类型的格式化,即将它转为指定格式的字符串,当然像YearMonth这种特殊的类型,实现字符串转化最为容易,即直接toString()即可,下面看一下代码,两种格式的转换. 一 Date到字符串转换 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM"); sdf.parse(maxDate))//2018-01 二 YearMonth到字符串转换 val from =Y…
日期->字符串,字符串->日期:日期->毫秒,毫秒>日期- private static void getDate() { // TODO Auto-generated method stub long time = System.currentTimeMillis(); Date date = new Date(time); System.out.println("毫秒转日期"+date); System.out.println("日期转毫秒&quo…
1. DateFormat类概述: DateFormat 是日期/时间格式化子类的抽象类,它以与语言无关的方式格式化并解析日期或时间. 是抽象类,所以使用其子类SimpleDateFormat 2. SimpleDateFormat构造方法: public SimpleDateFormat() public SimpleDateFormat(String pattern) 3. 成员方法 public final String format(Date date) public Date pars…