package java實用級;
//############################# JVA01.java
###############################
/*
依不同的格式顯示目前的系統中日期與時間。
(1)格式為:西元年/月/日 上午/下午 時/分。
(2)格式為:西元年/月/日 上午/下午 時/分/秒。
(3)格式為:西元年(年)月(月)日(日) 上午/下午 時(時)分(分)/秒(秒)。
(4)格式為:西元年(年)月(月)日(日) 上午/下午 時(時)分(分)/秒(秒) CST。
*/
import
java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
public class J102 {
public J102() {
// TODO Auto-generated constructor stub
}
static public void main(String[] args) {
Date date = Calendar.getInstance().getTime();
SimpleDateFormat ff1 =new SimpleDateFormat("yyyy/MM/dd a hh:mm");
SimpleDateFormat ff2 =new SimpleDateFormat("yyyy/MM/dd a hh:mm:ss");
SimpleDateFormat ff3 =new SimpleDateFormat("yyyy年MM月dd日 ahh時mm分ss秒");
SimpleDateFormat ff4 =new SimpleDateFormat("yyyy年MM月dd日 E ahh時mm分ss秒z");
System.out.println("----------------------------");
System.out.println("\t當地時間\t");
System.out.println("----------------------------");
System.out.println(ff1.format(date));
System.out.println(ff2.format(date));
System.out.println(ff3.format(date));
System.out.println(ff4.format(date));
}
}
沒有留言:
張貼留言