Tue Oct 17 00:00:56 CST 2017这个时间要怎么转换。
String string = null;
try {
SimpleDateFormat sdf = new SimpleDateFormat(
"EEE MMM dd HH:mm:ss z yyyy", Locale.US);
Date date = sdf.parse(d);
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(
"yyyy-MM-dd HH:mm:ss");
string = simpleDateFormat.format(date);
} catch (ParseException e) {
e.printStackTrace();
}
此方法无效,在android手机上。在java环境中是可以的,有没有知道为什么的