Board logo

標題: 1231 jva102 時間 [打印本頁]

作者: b790113g    時間: 2011-12-31 09:56     標題: 1231 jva102 時間

  1. Date d = Calendar.getInstance().getTime();
  2. SimpleDateFormat sdf1=new ("yyyy");
  3. System.out.println(sdf1.format(d));
複製代碼

作者: johnson    時間: 2011-12-31 10:44

import java.util.*; //Date
8 e" D' J( q8 Z$ d( j0 ^9 w4 Eimport java.text.*; //SimpleDateFormat
) d# N9 R3 \2 q) {1 m' {! D: |# y7 V; b" Y4 O
public class j102{) W$ P- }1 ]! N! x, W$ V9 O) ]$ J
; l: B9 Y8 g0 l6 ~6 }
        public static void main(String arg[]){, ?# F) w0 Y3 S: \! h- J
                    System.out.println("------------------");" M$ J5 s7 S) ]8 f( g
                    System.out.println("     當地時間     ");
4 ]! R# |9 i; {% |# E                    System.out.println("------------------");
4 W, ~* c6 z( Q- K; P, K                Date d = Calendar.getInstance().getTime();' A: K& K& ]! e" ]) z) W+ z
                SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");/ D& H4 @# _1 {, k* ~
                                SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");! B5 ]1 R9 A  S2 u6 O
                                SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
. @' T$ s* m2 g3 `6 b                                SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");8 S- q$ @4 u. ^! r% m% h5 X
                System.out.println(sdf1.format(d));; N+ A9 c9 D4 _# q
                                System.out.println(sdf2.format(d));
* B, g7 b4 {' z; n/ ]3 L                                System.out.println(sdf3.format(d));
2 Q$ ?4 r  m2 {  \                                System.out.println(sdf4.format(d));
! G. F, m; [: k8 Z4 Y, o        }
: k4 w3 r6 O5 n! ^/ b3 J0 b}
作者: eric5802    時間: 2011-12-31 10:45

import java.util.*; //Date/ t+ W6 h, }& @9 W5 x# w8 W0 _
import java.text.*; //SimpleDateFormat: r; C) e! v, @+ g

$ @, c1 O! e2 z; `public class j102{  w/ W1 [- S: X* O  d
$ |# F, y5 a. m( U' t
        public static void main(String arg[]){
4 p/ |* {! _& U4 [; y7 _6 n) A. F$ J                    System.out.println("------------------");1 Y) n7 N) K& L
                    System.out.println("     當地時間拉     ");/ ^$ v- b% F- `# l
                    System.out.println("------------------");
. L4 c8 A0 g3 v: _4 V3 D: ]- g                Date d = Calendar.getInstance().getTime();6 t! P0 s8 Z' n, i5 n3 e) M* ]
                SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");
0 M! a- D* \7 p) S+ W- y                                SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
; s+ m: b8 Q3 l$ a( k0 d  {                                SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");7 K! b1 _: [9 ], u
                                SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");  W/ l. ?( f8 h& a; B
                System.out.println(sdf1.format(d));. r4 J- E+ C9 X
                                System.out.println(sdf2.format(d));1 q4 P. Y8 n4 K( J+ s
                                System.out.println(sdf3.format(d));
( h9 T3 y7 F7 `3 d" [1 x                                System.out.println(sdf4.format(d));5 L5 ~1 m+ _' `' t- p; y3 _. f
        }
( G5 Z" O- h# V& w' e1 L' L1 f}
作者: kim    時間: 2011-12-31 10:46

本帖最後由 kim 於 2012-7-27 20:28 編輯 1 B% R" H! y; z( o% ^8 ^
  1. import java.util.*; //Date
  2. import java.text.*; //SimpleDateFormat

  3. public class j102{

  4.         public static void main(String arg[]){
  5.                 System.out.println("------------------");
  6.                 System.out.println("     當地時間     ");
  7.                 System.out.println("------------------");
  8.                 Date d = Calendar.getInstance().getTime();
  9.                 SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");
  10.                 SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
  11.                 SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
  12.                 SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
  13.                 System.out.println(sdf1.format(d));
  14.                 System.out.println(sdf2.format(d));
  15.                 System.out.println(sdf3.format(d));
  16.                 System.out.println(sdf4.format(d));
  17.         }
  18. }
複製代碼

作者: TOM    時間: 2011-12-31 10:52

本帖最後由 TOM 於 2011-12-31 11:07 編輯 / `! Z2 v5 I9 ^1 M, Z7 E  o7 X
  1. import java.util.* ;
  2. import java text.*;
  3. public class j103
  4. {
  5.         public static void main(Sting[]arg)
  6.         {
  7.                 System.out.println("------------------");
  8.                     System.out.println("     當地時間拉     ");
  9.                     System.out.println("------------------");

  10.         Date d=Calendar.getInstance.getTime();
  11.         SimpeDateFormat sdf1=new SimpeDateFormat("yyyy/M/d a hh:mm")
  12.         SimpeDateFormat sdf2=new SimpeDateFormat("yyyy/M/d a hh:mm:ss")
  13.         SimpeDateFormat sdf3=new SimpeDateFormat("yyyy年M月d日 ahh時mm分ss秒")
  14.         SimpeDateFormat sdf4=new SimpeDateFormat("yyyy年M月d日 E ahh時mm分ss秒")
  15.        
  16.         System.out.println(sdf1.fotmat(d));
  17.         System.out.println(sdf2.fotmat(d));
  18.         System.out.println(sdf3.fotmat(d));
  19.         System.out.println(sdf4.fotmat(d));
  20.         }
  21. }       
複製代碼

作者: may    時間: 2011-12-31 11:21

  1. import java.util.*; //Date
  2. import java.text.*; //SimpleDateFormat
  3. public class jva102{
  4.         public static void main(String arg[]){
  5.                 //Date d = new Date(); //新產生物件 可指定時間 () 內可帶參數
  6.                 // 取得日曆物件裡的實際系統時間
  7.                 Date d = Calendar.getInstance().getTime();
  8.                 //基本日期格式化
  9.                                 System.out.println("        當地時間");
  10.                 System.out.println("-------------------------");
  11.                                 SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");
  12.                 SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
  13.                 SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 a hh時mm分ss秒");
  14.                 SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E a hh時mm分ss秒 z");
  15.                 System.out.println(sdf1.format(d));
  16.                                 System.out.println(sdf2.format(d));
  17.                                 System.out.println(sdf3.format(d));
  18.                                 System.out.println(sdf4.format(d));
  19.                                
  20.         }
  21. }
複製代碼

作者: lon    時間: 2012-1-7 09:58

[attach]567[/attach]




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2