Android新浪微博时间格式化

 1 /**
 2      * 格式化微博时间
 3      * 
 4      * @param string
 5      * @return
 6      * @throws ParseException
 7      */
 8     public static String formatWeiboTime(String dateString) {
 9         // 微博创建时间:Fri Mar 01 10:36:44 +0800 2013 EEE MMM dd HH:mm:ss zzz yyyy /
10         // EEE MMM d HH:mm:ss Z yyyy
11         SimpleDateFormat simpleDateFormat = new SimpleDateFormat(
12                 "EEE MMM dd HH:mm:ss Z yyyy", Locale.US);
13         // simpleDateFormat.applyLocalizedPattern("en_US");
14         Date newDate;
15         try {
16             newDate = simpleDateFormat.parse(dateString.toString());
17             Log.i("test", "获取的时间" + newDate);
18             // 目的格式
19             SimpleDateFormat resultFormat = new SimpleDateFormat("MM月dd日 HH:mm");
20             String resultString = resultFormat.format(newDate);
21             return resultString;
22         } catch (ParseException e) {
23             // TODO Auto-generated catch block
24             e.printStackTrace();
25         }
26         return "";
27     }

 

posted @ 2013-03-05 20:02  GreyWolf  阅读(370)  评论(0编辑  收藏  举报