標題:
顯示系統時間 (一)
[打印本頁]
作者:
周政輝
時間:
2018-6-2 10:04
標題:
顯示系統時間 (一)
Date 類別與 SimpleDateFormat 類別的搭配運用
[attach]4191[/attach]
作者:
張健勳
時間:
2018-6-2 10:22
package bbs.istak.org.tw;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Date date = new Date();
SimpleDateFormat nd24 = new SimpleDateFormat("西元yyyy年 MM月 dd日 , hh時 mm分 ss秒");
SimpleDateFormat nd12 = new SimpleDateFormat("西元yyyy年 MM月 dd日 , ahh時 mm分 ss秒");
System.out.println("---------------");
System.out.println(" 現 在 時 間 ");
System.out.println("---------------");
System.out.println(date);
System.out.println(nd24.format(date));
System.out.println(nd12.format(date));
}
}
複製代碼
作者:
黃茂勛
時間:
2018-6-2 10:22
本帖最後由 黃茂勛 於 2018-6-2 10:45 編輯
package bbs.istak.org.tw;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
public class haung20180602 {
public static void main(String[] args) {
Date date = new Date();
System.out.println(date);
SimpleDateFormat datenow = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss");
System.out.println(datenow.format(date));
Calendar c = Calendar.getInstance();
System.out.println(c.get(Calendar.YEAR)+" "+(c.get(Calendar.MONTH)+1)+" "+c.get(Calendar.DAY_OF_MONTH));
}
}
複製代碼
作者:
蔡庭豪
時間:
2018-6-2 10:42
package bbs.istak.org.tw;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Date date = new Date();
SimpleDateFormat sdf0 = new SimpleDateFormat("yyyy/MM/dd aH:mm");
SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/MM/dd aH:mm:ss");
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy年MM月dd日 aH時mm分ss秒");
SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy年MM月dd日 E aH時mm分ss秒");
System.out.println(sdf0.format(date));
System.out.println(sdf1.format(date));
System.out.println(sdf2.format(date));
System.out.println(sdf3.format(date));
}
}
複製代碼
作者:
蔡季樺
時間:
2018-6-2 10:44
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String args[])
{
Date d = new Date();
SimpleDateFormat s1 = new SimpleDateFormat("yyyy/MM/dd 下午hh:mm");
System.out.println(s1.format(d));
SimpleDateFormat s2 = new SimpleDateFormat("yyyy/MM/dd 下午hh:mm:ss");
System.out.println(s2.format(d));
SimpleDateFormat s3 = new SimpleDateFormat("yyyy年MM月dd日 下午hh:mm:ss");
System.out.println(s3.format(d));
}
}
複製代碼
作者:
陳泓瑜
時間:
2018-6-2 11:05
package tw.kuas.edu.tw;
import java.text.SimpleDateFormat;
import java.util.Date;
public class TIME
{
public static void main(String[] args)
{
Date time = new Date();
SimpleDateFormat sdt1 = new SimpleDateFormat("yyyy/MM/dd a h:mm");
SimpleDateFormat sdt2 = new SimpleDateFormat("yyyy/MM/dd a hh:mm:ss");
SimpleDateFormat sdt3 = new SimpleDateFormat("yyyy年MM月dd日 ahh時mm分ss秒");
SimpleDateFormat sdt4 = new SimpleDateFormat("yyyy年MM月dd日 EEE ahh時mm分ss秒 zzz");
System.out.println(sdt1.format(time));
System.out.println(sdt2.format(time));
System.out.println(sdt3.format(time));
System.out.println(sdt4.format(time));
}
}
複製代碼
作者:
林侑成
時間:
2018-6-8 19:54
package tw.kuas.edu.tw;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Time
{
public static void main(String[] args)
{
Date time = new Date();
SimpleDateFormat sdt1 = new SimpleDateFormat("yyyy/MM/dd a h:mm");
SimpleDateFormat sdt2 = new SimpleDateFormat("yyyy/MM/dd a hh:mm:ss");
SimpleDateFormat sdt3 = new SimpleDateFormat("yyyy年MM月dd日 ahh時mm分ss秒");
SimpleDateFormat sdt4 = new SimpleDateFormat("yyyy年MM月dd日 EEE ahh時mm分ss秒 zzz");
System.out.println(sdt1.format(time));
System.out.println(sdt2.format(time));
System.out.println(sdt3.format(time));
System.out.println(sdt4.format(time));
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2