JAVA高级01_08 与日期和时间有关的类 2011-4-21

与日期和时间有关的类
 最常用几个类:Date、DateFormat和Calendar
 Calendar类
 -Calendar.add方法
 -Calendar.get方法,获取年月日时间值
 -Calendar.set方法
 -Calendar.getInstance静态方法
 -GregorianCalendar子类
 Date类
 java.text.DateFormat与java.text.SimpleDateFormat子类
 
  Calendar cl = Calendar.getInstance();
  System.out.println(cl.get(Calendar.YEAR) + "年" + cl.get(Calendar.MONTH) + "月" +
                     cl.get(Calendar.DAY_OF_MONTH) + "日" + cl.get(Calendar.HOUR) + ":" +
       cl.get(Calendar.MINUTE) + ":" + cl.get(Calendar.SECOND) );
   cl.add(cl.DAY_OF_YEAR,315);//315天后的日期
   System.out.println(cl.get(Calendar.YEAR) + "年" + cl.get(Calendar.MONTH) + "月" +
                     cl.get(Calendar.DAY_OF_MONTH) + "日" + cl.get(Calendar.HOUR) + ":" +
       cl.get(Calendar.MINUTE) + ":" + cl.get(Calendar.SECOND) );
    SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd");
    SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy年MM月dd日");
    try
    {
      Date d = sdf1.parse("2003-03-15");
      System.out.println( sdf2.format(d) );
    }
    catch(Exception e)
    {
      e.printStackTrace();
    }
  class MyTimerTask Extends TimerTask
  {
    private Timer tm = null;
    public MyTimerTask(Timer tm)
    {
     this.tm = tm
    }
    public void run()
    {
     try
      {
        Runtime.getRuntime().exec("calc.exe");
      }
      catch(Exception e)
      {
        e.printStackTrace();
      }
      //结束任务线程的代码
      tm.cancel();
      //this.cancel();
    }
  }

  Timer tm = new Timer();
  tm.schedule( new MyTimerTask(tm),30000);
 

 Timer与TimerTask类
  schedule方法主要有如下几种重载形式
  schedule(TimerTask task,long delay);
  schedule(TimerTask task,Date time);
  schedule(TimerTask task,long delay,long period);
  schedule(TimerTask task,Date firstTime,long period);
 TimerTask类实现了Runnable接口,要执行的任务由它里面实现的
 run方法来完成。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值