关于一个时间转换的
Tue May 31 17:46:55 +0800 2011像这样的时间格式,我们怎么样去转换成我们常用的时间格式?
[解决办法]
public static void main(String[] args) throws Exception {
String str = "Tue May 31 17:46:55 +0800 2011";
Date date = new Date(str);
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss EEE");
String ourDate = df.format(date);
System.out.println(ourDate);
}