java中,如何提取每个月的10号,然后判断是不是是星期六星期日
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中,如何提取每个月的10号,然后判断是不是是星期六星期日相关的知识,希望对你有一定的参考价值。
Calendar c=Calendar.getInstance();c.set(Calendar.MONTH, 7); //设置月份
c.set(Calendar.DAY_OF_MONTH, 8); //设置为10号
if(c.get(Calendar.DAY_OF_WEEK)==7)
System.out.println("今天周六");
else if(c.get(Calendar.DAY_OF_WEEK)==1)
System.out.println("今天周日");
else
System.out.println("今天不是周末");
参考技术A 你可以把这个问题分为两个问题,然后搜索一下,相信答案一大堆
java定时任务的定时表达式,每天早晨6:30执行任务,还有一个是每个月的1号和15号执行任务
刚写的,没测,你可以参考参考import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
public class MyTimer
public static void main(String[] args)
Timer timer1=new Timer();
//每天早上6:30执行任务,24*60*60*1000为一天的时间
timer1.schedule(new Task1(), getTargetDate(0,6,30,0), 24*60*60*1000);
//每个月1号执行任务
timer1.schedule(new Task2(1), getTargetDate(1,6,30,0));
//每个月15号执行任务
timer1.schedule(new Task2(2), getTargetDate(15,6,30,0));
/**
* 获取第一次要执行的时间
* 参数说明:
* day:一个月中的哪一天,默认为当前天
* hour:几点 minute:多少分 second:多少秒 默认为00:00:00
* 可根据自己需要修改
*/
public static Date getTargetDate(int day,int hour,int minute,int second)
SimpleDateFormat sf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date=new Date();//当前时间
Calendar calendar=Calendar.getInstance();
calendar.setTime(date);
if(day!=0)
calendar.set(Calendar.DAY_OF_MONTH,day);//设置哪一天
calendar.set(Calendar.HOUR_OF_DAY,hour);//设置几点
calendar.set(Calendar.MINUTE, minute);//设置多少分
calendar.set(Calendar.SECOND, second);//设置多少秒
if(calendar.getTime().getTime()<date.getTime())
//如果设置day 则认为是每个月执行,否则为每天执行
if(day!=0)
//获取下个月的规定时间
calendar.set(Calendar.MONTH, calendar.get(Calendar.MONTH)+1);
else
//获取第二天的规定时间
calendar.set(Calendar.DAY_OF_MONTH, calendar.get(Calendar.DAY_OF_MONTH)+1);
System.out.println("下次任务开始时间:"+sf.format(calendar.getTime()));
return calendar.getTime();
class Task1 extends TimerTask
@Override
public void run()
System.out.println("开始执行任务1:每天早上6:30");
class Task2 extends TimerTask
public Task2(int type)//构造函数
this.type=type;
;
@Override
public void run()
System.out.print("开始执行任务:");
if(type==1)
System.out.println("每月1号任务执行完成");
this.cancel();
Timer timer1=new Timer();
timer1.schedule(new Task2(1), MyTimer.getTargetDate(1,6,30,0));
if(type==2)
System.out.println("每月15号任务执行完成");
this.cancel();
Timer timer1=new Timer();
timer1.schedule(new Task2(2), MyTimer.getTargetDate(15,6,30,0));
private int type;//1号执行任务为1,15号执行任务为2
public int getType()
return type;
public void setType(int type)
this.type = type;
参考技术A public class TestTimerTask extends TimerTask
public void run()
Calendar cal = Calendar.getInstance();
//每月5号执行
if(cal.get(Calendar.DATE) == 5)
try
//需要执行的代码
catch (Exception e)
//logger.error(e);
e.printStackTrace();
System.gc();
//......
//周日执行
if(cal.get(Calendar.DAY_OF_WEEK) == 1)
try
//需要执行的代码
catch (Exception e)
// logger.error(e);
e.printStackTrace();
System.gc();
public class Test
public static void main (String[] ages)
Timer timer = new Timer();//定时器
TestTimerTask ts = newTestTimerTask();//定时任务目标
Date firstTime = new Date();//第一次执行时间
long period = 1000 * 60 * 60 * 24;//执行间隔1天
timer.scheduleAtFixedRate(ts, firstTime, period);//设置执行参数并且开始定时任务
参考技术B 给你一个例子自己研究一下吧
public class MyTimerTask implements ServletContextListener
private Timer timer = null;
String str="2013/5/8 9:30:00";
Long a=new Date().parse(str);
Date date=new Date(a);
//DateFormat df=DateFormat.getDateTimeInstance().parse(");
public void contextDestroyed(ServletContextEvent event)
// TODO Auto-generated method stub
timer.cancel();
event.getServletContext().log("定时器销毁");
public void contextInitialized(ServletContextEvent event)
// TODO Auto-generated method stub
timer = new Timer(true);
event.getServletContext().log("定时器已启动");//添加日志,可在tomcat日志中查看到
//调用exportHistoryBean,0表示任务无延迟,5*1000表示每隔5秒执行任务,60*60*1000表示一个小时;
timer.schedule(new Test(event.getServletContext()),date,24*60*1000); //Test继承了TimerTask类
参考技术C 0 30 6 * * * ?
0 0 0 1,15 * * ? //每月1,15号0点 参考技术D 先给你个思路,不懂再问:
http://hi.baidu.com/xiaotuhu/item/c55713dfa0575a84270ae708追问
我用的是spring的Quartz来实现定时任务,我数据库任务表的cron表达式相应字段值0 0/1 20 * * ?的时候,启动服务器会按照正确时间去调相应任务,那证明我的定时器应该是能解析到cron表达式吧,但是我设置0 30 6 * * * ?启动服务到设定时间的时候就不去执行任务,求助啊
以上是关于java中,如何提取每个月的10号,然后判断是不是是星期六星期日的主要内容,如果未能解决你的问题,请参考以下文章