我有以下格式的日期
//输入日期
Thu Jun 06 2013 00:00:00 GMT+0530 (India Standard Time)
//输出日期格式
I want to change this to "dd-mm-yyyy, hh:mm:ss".
我从 db 获取输入日期格式。我必须将其更改为输出日期格式,我将在网格中显示它。
我尝试了以下代码。
DateFormat outputDate = new SimpleDateFormat("dd-mm-yyyy, hh:mm:ss");
try
{
Date date = outputDate.parse(facade.getDate.toString()); **//getting exception here**
outputDate = new SimpleDateFormat("dd-mm-yyyy, hh:mm:ss");
Date date1 = new SimpleDateFormat("dd-mm-yyyy, hh:mm:ss").parse(outputDate
.format(date));
facade.setDate(date1);
}catch (ParseException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
我正进入(状态
java.text.ParseException: Unparseable date: "2013-06-06 00:00:00.0".
任何帮助..