zoukankan      html  css  js  c++  java
  • 每天定时上传数据的实现

    自己封装一个类

    package com.anllin.utils;

    import java.text.DateFormat;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import java.util.concurrent.ScheduledThreadPoolExecutor;
    import java.util.concurrent.TimeUnit;

    public class ScheduleUtil
    {
    private static DateFormat format()
    {
    return new SimpleDateFormat("HH:mm:ss:SSS");
    }

    private static Date parseTime(String time) throws ParseException
    {
    return format().parse(time);
    }

    private static long getOneDayMilliseconds()
    {
    return 24 * 60 * 60 * 1000L;
    }

    private static long getMillisecondsInOneDayBetween(String now, String future) throws ParseException
    {
    Date nowDate = parseTime(now);
    Date futureDate = parseTime(future);
    long nowTime = nowDate.getTime();
    long futureTime = futureDate.getTime();
    if (futureTime > nowTime)
    {
    return futureTime - nowTime;
    }
    else
    {
    return (futureTime + getOneDayMilliseconds()) - nowTime;
    }
    }

    public static void scheduleEveryday(ScheduledThreadPoolExecutor executor, Runnable command,
    String executedEverydayAt) throws ParseException
    {
    long initialDelay = getMillisecondsInOneDayBetween(format().format(new Date()), executedEverydayAt);
    long period = getOneDayMilliseconds();
    executor.scheduleAtFixedRate(command, initialDelay, period, TimeUnit.MILLISECONDS);
    }
    }

    调用方法

    public static void main(String[] args) throws Exception
    {
    ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(5);
    String executedEverydayAt = "12:00:00:000";
    ScheduleUtil.scheduleEveryday(executor, new Runnable(){
    public void run()
    {
    System.out.println("执行业务逻辑");
    }
    }, executedEverydayAt);
    }




  • 相关阅读:
    mdadm
    RAID磁盘阵列学习笔记
    内存究竟有多快?
    fping
    Intel® RAID Software User’s Guide
    为什么寄存器比内存快?
    OC-Category
    OC-id、构造方法
    OC- @property @synthesize
    OC-点语法
  • 原文地址:https://www.cnblogs.com/zfc2201/p/2308054.html
Copyright © 2011-2022 走看看