標題:
顯示系統時間 (一)
[打印本頁]
作者:
tonyh
時間:
2019-12-21 13:51
標題:
顯示系統時間 (一)
Date 類別與 SimpleDateFormat 類別的搭配運用
import java.util.Date;
import java.text.SimpleDateFormat;
public class Ch136 {
public static void main(String[] args) {
Date d=new Date();
SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/d a h:mm");
SimpleDateFormat sdf2=new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
SimpleDateFormat sdf3=new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
SimpleDateFormat sdf4=new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
System.out.println("-------------");
System.out.println(" 系統時間");
System.out.println("-------------");
System.out.println(sdf1.format(d));
System.out.println(sdf2.format(d));
System.out.println(sdf3.format(d));
System.out.println(sdf4.format(d));
}
}
複製代碼
作者:
蔡幸融
時間:
2019-12-21 14:18
import java.text.SimpleDateFormat;
import java.util.Date;
public class Ch136 {
public static void main(String[] args) {
Date d=new Date();
SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/d a h:mm");
SimpleDateFormat sdf2=new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
SimpleDateFormat sdf3=new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
SimpleDateFormat sdf4=new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
System.out.println("------------------");
System.out.println(" 系統時間");
System.out.println("------------------");
System.out.println(sdf1.format(d));
System.out.println(sdf2.format(d));
System.out.println(sdf3.format(d));
System.out.println(sdf4.format(d));
}
}
複製代碼
作者:
蕭澧邦
時間:
2019-12-21 14:20
import java.util.Date;
import java.text.SimpleDateFormat;
public class Ch136 {
public static void main(String[] args) {
Date d=new Date();
SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/d a h:mm");
SimpleDateFormat sdf2=new SimpleDateFormat("yyyy/M/d a hh:mm:ss");
SimpleDateFormat sdf3=new SimpleDateFormat("yyyy年M月d日 ahh時mm分ss秒");
SimpleDateFormat sdf4=new SimpleDateFormat("yyyy年M月d日 E ahh時mm分ss秒 z");
System.out.println("-------------");
System.out.println(" 系統時間");
System.out.println("-------------");
System.out.println(sdf1.format(d));
System.out.println(sdf2.format(d));
System.out.println(sdf3.format(d));
System.out.println(sdf4.format(d));
}
}
複製代碼
作者:
譚暐霖
時間:
2019-12-25 16:24
import java.util.Date;
import java.text.SimpleDateFormat;
public class Ch100 {
public static void main(String[] args) {
Date d=new Date();
SimpleDateFormat sdf1=new SimpleDateFormat("y/M/d a h:mm");
SimpleDateFormat sdf2=new SimpleDateFormat("y/M/d a hh:mm:ss");
SimpleDateFormat sdf3=new SimpleDateFormat("y年M月d日 ahh時mm分ss秒");
SimpleDateFormat sdf4=new SimpleDateFormat("y年M月d日 E ahh時mm分ss秒 z");
System.out.println("-------------");
System.out.println(" System time");
System.out.println("-------------");
System.out.println(sdf1.format(d));
System.out.println(sdf2.format(d));
System.out.println(sdf3.format(d));
System.out.println(sdf4.format(d));
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2