2013-11-28 67 views
0

如何將yyyy-MM-dd hh:mm:ss格式轉換成2013年11月20日。格式是否適合顯示?帶[20th]後綴的日期格式

謝謝。

+0

我發現的是補丁。像th,ed等數組,我必須追加。他們按日期。 – nil

+0

發佈您迄今已嘗試過的代碼。 –

回答

0
long yourmilliseconds =System.currentTimeMillis(); 
          SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss,SSS",Locale.US); 
          GregorianCalendar calendar = new GregorianCalendar(TimeZone.getTimeZone("US/Central")); 
          calendar.setTimeInMillis(yourmilliseconds); 
           time1=sdf.format(calendar.getTime()); 

time1 = time1.substring(0, time1.indexOf(",")); 
0

試試這個:

DateFormat inputFormat = new DateFormat("yyyy-MM-dd hh:mm:ss"); 
DateFormat outputFormat = new DateFormat("MMMM, dd yyyy"); 

Date date = inputFormat.parse("2013-11-28 00:52:19"); 
System.out.println(outputFormat.format(date)); 

可以使用this document參考。

0

你可以做類似的事情。

SimpleDateFormat df=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); 
    Date date=df.parse("2013-11-20 12:00:00"); 
    df=new SimpleDateFormat("MMMM, dd'th' yyyy"); 
    System.out.println(df.format(date)); 

出把

November, 20th 2013 
1

(現在不記得了)你需要這個工具方法追加thnd,我沒有寫,我從什麼地方複製到我的代碼:

public class NumberUtils { 
    public static String ordinal(int i) { 
     String[] sufixes = new String[] { "th", "st", "nd", "rd", "th", "th", 
      "th", "th", "th", "th" }; 
     switch (i % 100) { 
     case 11: 
     case 12: 
     case 13: 
     return i + "th"; 
     default: 
      return i + sufixes[i % 10]; 
     } 
    } 
} 

將其與其他答案結合起來,以獲得所需的結果。