24小時制日期顯示:
public class Datetime {
    public static void main(String args[]){
         java.util.Date current=new java.util.Date();
         java.text.SimpleDateFormat sdf=new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
         String c=sdf.format(current);
         System.out.println(c);   
    }
}

12小時制日期顯示:

public class Datetime {
    public static void main(String args[]){
         java.util.Date current=new java.util.Date();
         java.text.SimpleDateFormat sdf=new java.text.SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
         String c=sdf.format(current);
         System.out.println(c);
    }
}

兩者區別:yyyy-MM-dd HH:mm:ss ;  yyyy-MM-dd hh:mm:ss

如下:

字母

日期或時間元素

型態

範例

G

Era標識符號         

Text

AD

y

年           

Year 

1996; 96

M

年中的月份

Month

July; Jul; 07

w

年中的周數         

Number

27 

W

月份中的周數

Number

2

D

年中的天數

Number

189

d

月份中的天數

Number

10

F

月份中的星期

Number

2

E

星期中的天數

Text

Tuesday; Tue

a

Am/pm 標記

Text

PM 

H

一天中的小時數(0-23)

Number

0

k

一天中的小時數(1-24)

Number

24

K

am/pm 中的小時數(0-11)

Number

h

am/pm 中的小時數(1-12)

Number

12

m

小時中的分鐘數

Number

30

s

分鐘中的秒數

Number

55

S

毫秒數

Number

978

z

時區

General time zone Pacific Standard Time; PST;

GMT-08:00

Z

時區 RFC 822 time zone -0800

如果你解析RSS2.0 標準,其中/rss/item/pubDate的RFT標準格式為:Mon, 5 May 2008 00:01:00 EST

那麼對應的日期格式表示式為 E, d MMM yyyy HH:mm:ss z

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 楊 bey kuen 的頭像
    楊 bey kuen

    楊 bey kuen的部落格

    楊 bey kuen 發表在 痞客邦 留言(0) 人氣()