摘要: import java.util.Calendar;public class Main { public static void main(String[] args) { Calendar cal = Calendar.getInstance(); int day = cal.get(Calendar.DATE); int month = cal.get(Calendar.MONTH) + 1; int year = cal.get(Calendar.YEAR); int dow = cal.get(Calendar.DAY_OF_WEEK); int ... 阅读全文
posted @ 2013-03-04 10:40 微明Axel 阅读(810) 评论(0) 推荐(0)