-2
「2016-08-05 14:46:53 +05:30」の日付があり、 の日付と時刻の形式は「yyyy-MM-DD HH :mm:ss +05:30 " 問題は、この日付を解析しているときに出力が得られます" Tue Jan 05 14: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