我正在获取 SQL Server 日期时间(2013 年 1 月 1 日)SqlRowSet
等形式
while (rs.next()) {
myBean.setDateProp(rs.getString(4));
}
的类型myBean
DateProp
是java.util.Date
,有没有办法转换(1 Jan 2013)
为 java 日期表示。
我试过下面的代码
SimpleDateFormat sdf = new SimpleDateFormat("dd-MMM-yyyy HH:mm:ss.SSS");
Date date=new Date();
try {
date = sdf.parse("1 Jan 2013");
} catch (Exception e) {
e.printStackTrace();
}
我得到了ParseException
严重:java.text.ParseException:无法解析的日期:“2013 年 1 月 1 日”
任何方向...