返回列表 發帖

1231 jva102 時間

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

import java.util.*; //Date  w2 s5 x1 R' f) C3 e- H: S
import java.text.*; //SimpleDateFormat1 \$ V7 u: W8 [/ j2 `
, |5 e5 o" Q* h5 O4 N
public class j102{
2 p+ z, V8 Z1 O' s: _/ X# Q; a  o% g' t4 p# |, D
        public static void main(String arg[]){3 @* M" M* r" ^' O
                    System.out.println("------------------");. C- g+ x! t) A0 B; m( R
                    System.out.println("     當地時間     ");/ j5 U) U' @3 W. A% ]
                    System.out.println("------------------");
9 z9 a2 C1 {$ Y2 @8 ~2 y0 u                Date d = Calendar.getInstance().getTime();
$ v) ^% E0 ^( t( H; S                SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");$ r! I" ^& D$ W/ \
                                SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
+ N+ a* I  o! p/ E% S* v                                SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
/ z1 A3 |  I. M6 v7 c                                SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");  x  p- v) B; `, N5 a# H9 ]% X6 f  o
                System.out.println(sdf1.format(d));, w9 {3 x* C. n9 j, b8 X  }
                                System.out.println(sdf2.format(d));) A2 I6 \. f7 @
                                System.out.println(sdf3.format(d));
% @( e; t; ~2 I4 ]$ O- Z                                System.out.println(sdf4.format(d));
  M- d& E, T' ?% P1 u' I. x        }5 k3 ^* c+ e4 @) e9 f
}
小雲雀

TOP

import java.util.*; //Date
- e- y# n% P) k& [, n6 C9 t, I0 Oimport java.text.*; //SimpleDateFormat' s) ^$ @4 ^0 f2 [( X
- d2 Q9 `# r3 }9 {% |+ F
public class j102{
) ?" \$ m% I6 u- z9 @& z* G# [! L  P9 O; w$ `  z# k7 g/ O9 a1 X& S7 e
        public static void main(String arg[]){
& W( ]7 }1 {6 R8 ]& R1 T: ]                    System.out.println("------------------");- v/ \/ H4 v7 v6 j0 k8 o# |* v( X
                    System.out.println("     當地時間拉     ");' N7 b6 f1 H  o7 b" a
                    System.out.println("------------------");
2 z6 c% m8 j* S9 t6 n$ j. `                Date d = Calendar.getInstance().getTime();4 u7 I+ C# d( L& b# _, A; a
                SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");. P: q% H5 e0 N* b* a
                                SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");; N5 T3 u/ w) c2 i" K/ A% Z8 |
                                SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");: x+ S* K7 N$ T. [. L8 U
                                SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
6 F# N5 T) H9 h/ {- F3 \$ T                System.out.println(sdf1.format(d));* l* d& |1 T& e$ Y8 y3 M
                                System.out.println(sdf2.format(d));
) z, o2 T- X6 ~. r, f                                System.out.println(sdf3.format(d));
. |: Q0 G) `3 n$ y/ _: E                                System.out.println(sdf4.format(d));
  m1 a! c) D! A2 `        }
/ @& e4 a  r8 W/ `}
人平

TOP

本帖最後由 kim 於 2012-7-27 20:28 編輯
8 H& D+ t+ [+ U( K; |
  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

本帖最後由 TOM 於 2011-12-31 11:07 編輯 . l6 t: n0 t* r' g+ z1 U- v1 g) s4 q
  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

  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

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

TOP

返回列表