标签:类型 from format 转换 led 字符串 ring sim 获得
旧的时间字符串-->simpledataformat1.parse(该字符串) 获得date类型 -->simpledataformat2.format(date)
simpledateformat1的pattern的格式和旧的字符串相同,simpledateformat2的pattern格式和希望的相同。
比如
旧的字符串格式为 yyyy-MM-dd,希望转换为yyyy年MM月dd日
String old="2019-12-13";
DateFormat format1 = new SimpleDateFormat("yyyy-MM-dd");
Date date=format1.parse(old);
DateFromat format2=new SimpleDateFormat(yyyyMMdd);
String new=format2.format(date);
标签:类型 from format 转换 led 字符串 ring sim 获得
原文地址:https://www.cnblogs.com/WinseterCheng/p/9154923.html