将yyyy-mm-dd转换为dd mm yyyy

2022-08-24 00:00:00 android simpledateformat

如何将2013-06-24转换为2013-06-24?我正在使用下面的代码。

date1="2013-06-24";
SimpleDateFormat d= new SimpleDateFormat("dd MMM yyyy");

try{
date2 =  d.parse(date1);
}catch (ParseException e1) {
// TODO Auto-generated catch block
  e1.printStackTrace();
}  

但我收到此错误"java.ext.ParseException:Unparseable Date:"2013-06-24"(At Offset 4)"


解决方案

您需要两个DateFormat实例:一个用于分析原始String,另一个用于输出所需的实例。

DateFormat inputFormat = new SimpleDateFormat("yyyy-MM-dd");
DateFormat outputFormat = new SimpleDateFormat("dd MMM yyyy");
String inputDateStr="2013-06-24";
Date date = inputFormat.parse(inputDateStr);
String outputDateStr = outputFormat.format(date);

相关文章