摘要:
public class DateHandler { public static void main(String[] args) { DateHandler dh = new DateHandler(); dh.getCurrentDateByDate(); dh.getCurrentDateByCalendar(); } // 使用Date类得到当前时间 public void getCurrentDateByDate() { Date date = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM- 阅读全文
posted @ 2012-07-31 14:21 开拓者2012 阅读(95) 评论(0) 推荐(0) 编辑