Board logo

標題: 顯示系統時間 (一) [打印本頁]

作者: tonyh    時間: 2017-12-1 20:23     標題: 顯示系統時間 (一)

本帖最後由 tonyh 於 2019-12-21 13:50 編輯

Date 類別與 SimpleDateFormat 類別的搭配運用

  1. import java.util.Date;
  2. import java.text.SimpleDateFormat;
  3. public class Ch136 {
  4.         public static void main(String[] args) {
  5.                 Date d=new Date();
  6.                 SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/d a h:mm");
  7.                 SimpleDateFormat sdf2=new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
  8.                 SimpleDateFormat sdf3=new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
  9.                 SimpleDateFormat sdf4=new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
  10.                 System.out.println("-------------");
  11.                 System.out.println("         系統時間");
  12.                 System.out.println("-------------");
  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. }
複製代碼

作者: 李知易    時間: 2017-12-1 20:48

  1. import java.util.Date;
  2. import java.text.SimpleDateFormat;
  3. public class Ch132 {
  4.         public static void main(String[] args) {
  5.                 Date d=new Date();
  6.                 SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/d a h:mm");
  7.                 SimpleDateFormat sdf2=new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
  8.                 SimpleDateFormat sdf3=new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
  9.                 SimpleDateFormat sdf4=new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
  10.                 System.out.println("-------------");
  11.                 System.out.println("         系統時間");
  12.                 System.out.println("-------------");
  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. }
複製代碼

作者: 黃璽安    時間: 2017-12-1 20:55

  1. import java.util.Date;
  2. import java.text.SimpleDateFormat;
  3. public class Ch133 {
  4.         public static void main(String[] args) {
  5.                 Date d=new Date();
  6.                 SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/d a h:mm");
  7.                 SimpleDateFormat sdf2=new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
  8.                 SimpleDateFormat sdf3=new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
  9.                 SimpleDateFormat sdf4=new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
  10.                 System.out.println("-------------");
  11.                 System.out.println("         系統時間");
  12.                 System.out.println("-------------");
  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. }
複製代碼

作者: 洪振庭    時間: 2017-12-1 21:18

  1. import java.util.Date;
  2. import java.text.SimpleDateFormat;
  3. public class Ch130 {
  4.       public void main(String[] args){
  5.               Date d=new Date();
  6.               SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/d a h:mm");
  7.               SimpleDateFormat sdf2=new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
  8.               SimpleDateFormat sdf3=new SimpleDateFormat("yyyy年M月日 ahh時mm分ss秒");
  9.               SimpleDateFormat sdf4=new SimpleDateFormat("yyyy年M月日     E ahh時mm分ss秒 z");
  10.               
  11.               System.out.println("-------------");
  12.           System.out.println("         系統時間");
  13.           System.out.println("-------------");
  14.           System.out.println(sdf1.format(d));
  15.           System.out.println(sdf2.format(d));
  16.           System.out.println(sdf3.format(d));
  17.           System.out.println(sdf4.format(d));
  18.       
  19.       }
  20. }
複製代碼





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