我想更改我的日期格式,即
String date ="29/07/13";
但它向我显示了* Unparseable date: "29/07/2013" (at offset 2) * 我想以这种格式获取日期 2013 年 7 月 29 日的错误。
这是我用来更改格式的代码。
tripDate = (TextView) findViewById(R.id.tripDate);
SimpleDateFormat df = new SimpleDateFormat("MMM d, yyyy");
try {
oneWayTripDate = df.parse(date);
} catch (ParseException e) {
e.printStackTrace();
}
tripDate.setText(oneWayTripDate.toString());