返回列表 發帖

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 編輯
/ }0 E; |5 t* h! Y2 e
  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 編輯 % a! O; h' ?: D% u0 v
  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" x0 S: R1 z, t! \% M0 t! j
import java.text.*; //SimpleDateFormat% }% \2 \  E+ w) c2 s6 Q

5 D, q* T1 f# |( L5 ~1 N$ q" ^public class j102{' h: y8 b7 P$ v2 ^" c
5 A) p. f/ e  M: R$ h3 A
        public static void main(String arg[]){
$ g$ x0 A3 }. \9 S! p                    System.out.println("------------------");& F* g3 Y) h' z+ e, i4 [
                    System.out.println("     當地時間拉     ");# X8 M; q0 a+ @" I& a
                    System.out.println("------------------");/ T2 k- `( v/ G8 a3 d
                Date d = Calendar.getInstance().getTime();2 |2 |. Z+ G' b# b8 q
                SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");
* I9 K  h" i7 U+ c                                SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
* m- K  j5 b! s/ Y' O1 u- @                                SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
% _0 e8 @. x7 p/ M                                SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
. U& I# [2 x+ v: _                System.out.println(sdf1.format(d));
0 M8 o/ X' @9 T  ^: W7 c                                System.out.println(sdf2.format(d));* f& B# F0 P& Q" |. }1 ]
                                System.out.println(sdf3.format(d));! E) K! u, s2 B. r0 L
                                System.out.println(sdf4.format(d));: l. N2 N! @( ]3 p1 k) O+ |
        }; N3 U) F& U- @% Y
}
人平

TOP

import java.util.*; //Date$ ]% J/ _2 k  W3 Z: Y
import java.text.*; //SimpleDateFormat7 Z- E+ U( C. i7 h2 d/ E$ Z0 D
$ E6 G; Y1 h# |
public class j102{
9 S/ I' D* S# t- w; H- z' w3 z* D, P: d6 |4 ^0 j
        public static void main(String arg[]){8 V; W; }7 H- v0 s( i& F( Z
                    System.out.println("------------------");
0 B' v2 x: n+ R                    System.out.println("     當地時間     ");
& ?3 o- m; s7 M( K$ a                    System.out.println("------------------");& I$ t$ V: J  H* q) o6 p
                Date d = Calendar.getInstance().getTime();
$ ]7 M) a3 w8 i# s: U                SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");- C9 z" P- r  f7 D* x$ z: q% G4 k
                                SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
7 c& t+ a" P( E! K8 C                                SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");2 X3 t8 ^7 _! ?$ k
                                SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");$ O2 i5 k9 Y4 Y7 H5 a
                System.out.println(sdf1.format(d));
1 c1 G9 T7 g! A1 F                                System.out.println(sdf2.format(d));
. L* h! s, P5 S- W. b, s* c* I                                System.out.println(sdf3.format(d));  E# V8 s6 _8 K( K/ n# t. i& E
                                System.out.println(sdf4.format(d));2 b' n" k2 {! p( h* R" @+ v! s! Q$ S
        }
1 z# N" R& P% {3 t& ]. Q}
小雲雀

TOP

返回列表