import java.util.*; //Date
* Y) o5 I8 B$ `import java.text.*; //SimpleDateFormat
# e( P7 C8 |6 v9 e" y
% y% }5 I, Z1 v" ]0 s+ fpublic class j102{
6 Y G& |9 ^* g$ \, K/ {" I S4 ] |3 n) `9 J r, x. ?% t
public static void main(String arg[]){
' w5 u) `4 \! x' p- X1 K3 }5 s( Z System.out.println("------------------");' [: |+ @0 h4 g+ {, S1 J+ a
System.out.println(" 當地時間 ");
* P* [' }3 a* A P4 r# }. p- ]8 j! T System.out.println("------------------");$ b8 Q4 y; D3 D
Date d = Calendar.getInstance().getTime();- v8 B$ S7 ?) y& i
SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");
$ s6 A' Y/ V& Y1 p' Y SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
9 v* \4 a3 W; X+ F SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
1 h' V2 h2 |8 A5 L SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
1 C7 L" ~' n4 V4 [ System.out.println(sdf1.format(d));
e( d# a# V( c! q2 j+ ?1 } System.out.println(sdf2.format(d));# H0 }( c4 I" r5 M- i8 f
System.out.println(sdf3.format(d));" L/ o; O# ?3 ^. }
System.out.println(sdf4.format(d));. H8 N, Q5 `2 s. I- l! F- D
}
# K$ C7 D/ U2 Y0 C) i} |