import java.util.*; //Date
+ i) W ^ ]0 p/ X' K! i' r1 `+ Fimport java.text.*; //SimpleDateFormat. E( [/ C, e/ D( Q* j9 a& d
, t2 D" k. p& E3 s0 w) c/ ]# Epublic class j102{
0 P# q9 T. X* m) [, U8 t1 j/ K4 M1 A! O5 l7 X3 F H2 q
public static void main(String arg[]){
1 B6 ]0 z7 k8 w+ g System.out.println("------------------");$ F* H. @9 @- ^# }/ ]
System.out.println(" 當地時間 ");
' f t. F, q. \% F- i System.out.println("------------------");
4 p8 U% f9 M a4 [8 g- V Date d = Calendar.getInstance().getTime();
8 \* r4 D6 C4 f4 V) ]. G SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");
' y/ p' d% l) @3 W SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
/ `' w/ Q) N" r3 D SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
+ x1 u8 n) W/ g SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
+ v! A0 U% `: G* f+ Z! f0 R, g8 ^ System.out.println(sdf1.format(d));. V( A, Q) g$ f) j& x
System.out.println(sdf2.format(d));5 }! M3 |! L+ N2 r* }/ r% G0 J
System.out.println(sdf3.format(d));0 V1 q! c* b5 b! I
System.out.println(sdf4.format(d));8 x; l& Y' ?1 C9 R
}
" ~4 ^! D1 k4 D+ f} |