標題:
TQC102 - 顯示系統時間
[打印本頁]
作者:
tonyh
時間:
2013-3-16 17:16
標題:
TQC102 - 顯示系統時間
本帖最後由 tonyh 於 2013-3-23 16:52 編輯
學習重點: Date() 函式與 SimpleDateFormat() 函式的運用
import java.util.Date; //可以用java.util.*取代
import java.text.SimpleDateFormat;
public class tqc102
{
public static void main(String args[])
{
Date date=new Date(); //宣告Date物件
SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/d a hh: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(date));
System.out.println(sdf2.format(date));
System.out.println(sdf3.format(date));
System.out.println(sdf4.format(date));
}
}
複製代碼
作者:
尤泓鈞
時間:
2013-3-23 16:40
import java.util.Date;
import java.text.SimpleDateFormat;
public class TQC102
{
public static void main(String args[])
{
Date date=new Date();
SimpleDateFormat sdf1=new SimpledateFormat("yyyy/m/d a hh:mm");
SimpleDateFormat sdf2=new SimpledateFormat("yyyy/m/d a hh:mm:ss");
SimpleDateFormat sdf3=new SimpledateFormat("yyyy/m/d a hh時mm分ss秒");
SimpleDateFormat sdf4=new SimpledateFormat("yyyy年m月d日 E a hh:時mm分ss秒 z");
System.out.println("____________________");
System.out.println(" 當地時間 ");
System.out.println("____________________");
System.out.println("sdf1.format(date)");
System.out.println("sdf2.format(date)");
System.out.println("sdf3.format(date)");
System.out.println("sdf4.format(date)");
}
}
複製代碼
作者:
t3742238
時間:
2013-3-23 16:41
import java.util.Date;
import java.text.SimpleDateFormat;
public class JAV02
{
public static void main(String args[])
{
Date date=new Date();
SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/D ahh:mm");
SimpleDateFormat sdf2=new SimpleDateFormat("yyyy/M/D ahh: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(date));
System.out.println(sdf2.format(date));
System.out.println(sdf3.format(date));
System.out.println(sdf4.format(date));
}
}
複製代碼
作者:
黃博鴻
時間:
2013-3-23 16:47
import java.util.Date;
import java.text.SimpleDateFormat;
public class tqc102
{
public static void main(String args[])
{
Date Date=new Date();
SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/d a hh: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(Date));
System.out.println(sdf2.format(Date));
System.out.println(sdf3.format(Date));
System.out.println(sdf4.format(Date));
}
}
複製代碼
作者:
t2364705
時間:
2013-3-23 16:49
import java.util.Date;
import java.text.SimpleDateFormat;
public class tqc102
{
public static void main(String args[])
{
Date date=new Date();
SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/M/D a hh: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(date));
System.out.println(sdf2.format(date));
System.out.println(sdf3.format(date));
System.out.println(sdf4.format(date));
}
}
複製代碼
作者:
劉漢文
時間:
2013-3-23 16:53
import java.util.Date;
import java.text.SimpleDateFormat;
public class tqc102
{
public static void main (String args[])
{
Date date=new Date();
SimpleDateFormat sdf1=new SimpleDateFormat("yyyy/m/d a hh: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(date));
System.out.println(sdf2.format(date));
System.out.println(sdf3.format(date));
System.out.println(sdf4.format(date));
}
}
複製代碼
作者:
蔡昀佑
時間:
2013-3-23 16:53
import java.util.Date;
import java.text.SimpleDateFormat;
public class TQC102
{
public static void main(String args[])
{
Date date=new Date();
SimpleDateFormat sdf1=new SimpledateFormat("yyyy/m/d a hh:mm");
SimpleDateFormat sdf2=new SimpledateFormat("yyyy/m/d a hh:mm:ss");
SimpleDateFormat sdf3=new SimpledateFormat("yyyy/m/d a hh時mm分ss秒");
SimpleDateFormat sdf4=new SimpledateFormat("yyyy年m月d日 E a hh:時mm分ss秒 z");
System.out.println("____________________");
System.out.println(" 當地時間 ");
System.out.println("____________________");
System.out.println("sdf1.format(date)");
System.out.println("sdf2.format(date)");
System.out.println("sdf3.format(date)");
System.out.println("sdf4.format(date)");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2