返回列表 發帖

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 編輯 " e" c: e! {# s% f
  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 編輯 ) u/ m& }) a4 `: y6 |7 h
  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
$ F! v$ D) l0 x  T& Iimport java.text.*; //SimpleDateFormat
' e9 k6 t% S( a0 Q4 @# c
! ~' g2 m' C" D+ d+ r6 @' v$ Vpublic class j102{3 D* z( p, R8 F" C6 S/ s9 E3 w
* m' B4 G( s+ T5 U$ R
        public static void main(String arg[]){
- `* Z2 X& I8 R/ |% }3 g; C4 p1 e$ O                    System.out.println("------------------");
$ W8 N0 h3 z& |                    System.out.println("     當地時間拉     ");. _* }. l( A; }$ l+ Z3 Z
                    System.out.println("------------------");
- Q9 |' |5 C9 H" D( @$ k& y                Date d = Calendar.getInstance().getTime();
2 v1 {9 Z: j1 x: X1 W! }( T                SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");4 O) Z$ ?. v; J. \" P
                                SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
* }" i) f/ K, a. d- x3 [" L                                SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");/ `4 s3 K; I& o* F0 [! l
                                SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
9 A7 }  j3 t# A' T                System.out.println(sdf1.format(d));: K. J0 n# N- A/ S. X* z
                                System.out.println(sdf2.format(d));
5 j' E. S& v3 J  c$ P# I                                System.out.println(sdf3.format(d));+ \' u; i% M: T- z  [- u, \
                                System.out.println(sdf4.format(d));0 O9 y, s8 D: K# l8 S3 f. @
        }
. O- D' c- c6 }) j5 s7 a  b}
人平

TOP

import java.util.*; //Date
2 L5 i# o, m* r5 x; S4 }, m) jimport java.text.*; //SimpleDateFormat# {$ L+ ]5 s9 p' r9 n
" ]4 |  l: y- ?6 B
public class j102{9 k$ p+ I: P" R/ {1 b  Q1 d

% V- ?% q% n1 B# z. v        public static void main(String arg[]){
4 `/ j0 ?' `3 r+ g                    System.out.println("------------------");1 m9 w  ]: n% k
                    System.out.println("     當地時間     ");4 v, ]* u( O% A1 d* ]/ ~$ s
                    System.out.println("------------------");0 B# A6 l$ `0 ^; H' @" }4 o
                Date d = Calendar.getInstance().getTime();
' E( {8 F# f8 p6 p0 f* n                SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/M/d a hh:mm");
5 @7 O2 g' s# K5 ~. E4 K                                SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/M/d a hh:mm:ss");1 d' O, }, ]. z6 V
                                SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");6 D4 A( p  o$ J" W$ Q( K
                                SimpleDateFormat sdf4 = new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
) E. z# B3 }* X" R( T0 ]2 n7 A! q) H                System.out.println(sdf1.format(d));
0 ~$ E. q' A4 u' }, G                                System.out.println(sdf2.format(d));( Z4 ^# D) N7 c* z
                                System.out.println(sdf3.format(d));
% y6 z9 N0 Q" |5 }  N                                System.out.println(sdf4.format(d));
7 t- `2 [6 M' F" E" c4 Q        }2 o+ Z( Q2 v0 e/ Y2 w
}
小雲雀

TOP

返回列表