android 中将 yyyy-MM-dd HH:mm:ss 转换为 EEE MMM dd HH:mm:ss z yyyy格式
/**
* 将 yyyy-MM-dd HH:mm:ss 转换为 EEE MMM dd HH:mm:ss z yyyy
* @param time
* @return
*/
public static String converToStandardTime(String time){
SimpleDateFormat sdf1= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
SimpleDateFormat sdf2= new SimpleDateFormat("EEE MMM dd HH:mm:ss Z yyyy", Locale.UK);
String format = null;
try {
format = sdf2.format(sdf1.parse(time));
} catch (ParseException e) {
e.printStackTrace();
}
return format;
}