-2
我使用的日期「2016-08-05 14:46:53 +05:30」和 我使用的日期和時間格式是「yyyy-MM-DD HH :mm:ss +05:30「 問題是,當我解析這個日期時,我得到了輸出」Tue Jan 05 05:46:53 GMT + 05:30 2016「我沒有得到什麼是問題。 我正在使用的代碼發佈如下。日期和時間格式錯誤
public class DateFormater {
private static String DATE_TIME_FORMAT = "yyyy-MM-DD HH:mm:ss +05:30";
private static String TAG = DateFormater.class.getSimpleName();
public static Date getDate(String s) {
//Input s = 2016-08-05 14:46:53 +05:30
Date date = null;
try {
SimpleDateFormat dateFormat=new SimpleDateFormat(DATE_TIME_FORMAT);
date=dateFormat.parse(s);
} catch (ParseException e) {
e.printStackTrace();
}
return date;
}
public static String getCurrentDateString(Date date) {
DateFormat dateFormat=SimpleDateFormat.getDateInstance(DateFormat.MEDIUM);
Log.i(TAG, "getCurrentDateString: "+dateFormat.format(date));
return dateFormat.format(date);
}
public static String getCurrentTimeString(Date date) {
DateFormat dateFormat=SimpleDateFormat.getTimeInstance(DateFormat.SHORT);
return dateFormat.format(date);//Tue Jan 05 14:46:53 GMT+05:30 2016
}}
'DD'不是您要查找的標記,請使用'dd'。 – Tunaki
知道它的朋友。謝謝 – ESHVAR289