亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

java語言

java如何給時(shí)間格式化

時(shí)間:2024-08-13 23:08:55 java語言 我要投稿
  • 相關(guān)推薦

java如何給時(shí)間格式化

  java中如何格式化的時(shí)間,這是一個(gè)很簡(jiǎn)單的問題,在實(shí)際的編程中經(jīng)常用,以下是小編為大家搜索整理的java如何給時(shí)間格式化,希望能給大家?guī)韼椭?更多精彩內(nèi)容請(qǐng)持續(xù)關(guān)注我們應(yīng)屆畢業(yè)生考試網(wǎng)!

java如何給時(shí)間格式化

  日期格式化

  import java.util.Date;

  import java.text.SimpleDateFormat;

  class dayTime

  {

  public static void main(String args[])

  {

  Date nowTime=new Date();

  System.out.println(nowTime);

  SimpleDateFormat time=new SimpleDateFormat("yyyy MM dd HH mm ss");

  System.out.println(time.format(nowTime));

  }

  }

  public void timerStop(){

  if(timer!=null)

  timer.cancel();

  }

  public static void main(String[] args){

  BugXmlTimer myTimer=new BugXmlTimer();

  // TODO Auto-generated method stub

  myTimer.timerStart();

  }

  }

  //這是執(zhí)行任務(wù)的類,即每隔一段時(shí)間要做的事情在這里

  package com.my.time;

  import java.util.TimerTask;

  public class BugXmlTimerTask extends TimerTask {

  @Override

  public void run() {

  System.out.print("run task");

  }

  }

  //以下是出發(fā)定時(shí)操作的類,該類實(shí)現(xiàn)了ServletContextListener

  public class MyTimerListener implements ServletContextListener {

  private BugXmlTimer mytimer = new BugXmlTimer ();

  public void contextInitialized(ServletContextEvent event) {

  mytimer.timerStart();

  }

  public void contextDestroyed(ServletContextEvent event) {

  mytimer.timerStop();

  }

  }

  然后在web.xml里部署一下,即可在程序啟動(dòng)后運(yùn)行定時(shí)器了!

  com.my.time.MyTimerListener

【java如何給時(shí)間格式化】相關(guān)文章:

java如何構(gòu)造12-11

如何保護(hù)硬盤不被格式化03-28

Linux系統(tǒng)是如何格式化硬盤03-22

新手如何學(xué)習(xí)Java07-06

如何學(xué)習(xí)JAVA開發(fā)04-26

如何創(chuàng)建java包03-27

Java的就業(yè)前景如何03-23

Java獲取UTC時(shí)間的方法02-09

如何創(chuàng)建java包名03-28