Java定时任务:使用外部JAR包获取数据
import java.util.Timer; import java.util.TimerTask;
public class ExternalJarExample { public static void main(String[] args) { Timer timer = new Timer(); timer.schedule(new TimerTask() { @Override public void run() { // Code to retrieve data from external jar // and process the data // and return the result } }, 0, 1000); // Execute the task every 1 second } }
原文地址: https://www.cveoy.top/t/topic/pV3R 著作权归作者所有。请勿转载和采集!