返回列表 發帖

1231 jva102 時間

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

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊
陳彥綸

TOP

  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. }
複製代碼
May

TOP

本帖最後由 TOM 於 2011-12-31 11:07 編輯
. o4 |7 i: M& Y+ }' `
  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. }       
複製代碼
水桶小鄭,鯰魚

TOP

本帖最後由 kim 於 2012-7-27 20:28 編輯
3 L& |3 H3 p1 u( @& }5 M
  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. }
複製代碼
★ 嘉凱~~☆

TOP

import java.util.*; //Date
6 T2 B' t5 z4 X3 c% S  timport java.text.*; //SimpleDateFormat1 H' g: e% N3 A
0 {- F( n* c  T" Y- H
public class j102{
1 Y% l" A+ {5 G3 c6 S6 o; }! _8 c( B5 q2 o5 ]
        public static void main(String arg[]){8 P* B4 ~+ O1 o; u7 P9 }
                    System.out.println("------------------");
. C1 a) Z1 ]# ?7 k# Y                    System.out.println("     當地時間拉     ");
9 f* ?% N! w" I7 |# K' G) G                    System.out.println("------------------");; Z+ [7 |* Q  f0 m* Z7 g
                Date d = Calendar.getInstance().getTime();! U7 m. b; s* z4 t+ R. F
                SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");/ E( j4 A+ Q# j' O& f; _
                                SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
. B: [' {& }) ~6 K6 m                                SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
/ p6 k6 X6 ~+ a2 c2 F& J                                SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");3 o! q5 T6 k4 N0 S9 j; z
                System.out.println(sdf1.format(d));
% K* V5 p. z- @% o6 {                                System.out.println(sdf2.format(d));! V  ]8 T& U" Q& [3 j0 _9 x+ N9 a
                                System.out.println(sdf3.format(d));
/ A: K9 U0 S  @% K                                System.out.println(sdf4.format(d));
5 O$ Z0 n! E" h' z8 Q/ I7 W3 G7 ^, o        }
9 ?% A' E$ [1 h}
人平

TOP

import java.util.*; //Date
" {* z( p1 h  ]. @" j# |/ a3 Ximport java.text.*; //SimpleDateFormat
9 K8 w4 K4 r2 I  c) z& O) @! G, Z) M
public class j102{) g5 A+ O9 k; }% i- q
' @; Z6 Y( B2 @$ A7 W
        public static void main(String arg[]){2 d3 j5 |7 W0 i/ D* ~$ A
                    System.out.println("------------------");
5 W( }# j  H# f, @' m1 c                    System.out.println("     當地時間     ");
/ k+ }) m" O9 X) j6 I: r# g+ X' a                    System.out.println("------------------");8 F/ w3 W5 U& Z! p! g! R" T
                Date d = Calendar.getInstance().getTime();- B- n: ]$ ?1 q" r9 a
                SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");
! S. c; }! X$ a. ~+ \                                SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");" T' h/ x  m2 F" a
                                SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
- l- ?% I# g# I% Y& N' B( B                                SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");6 ]" @2 X; [0 g7 v
                System.out.println(sdf1.format(d));
; L* ~1 S0 j6 o/ V4 e' K                                System.out.println(sdf2.format(d));
2 x% D1 |  A- E& b) H  n                                System.out.println(sdf3.format(d));
% s' H5 E2 C" p+ m* O1 s                                System.out.println(sdf4.format(d));8 g' e' l! P) K( L! W4 P
        }' P* [! E; @8 E
}
小雲雀

TOP

返回列表