如何在JAVA中每隔一段时间执行一段程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在JAVA中每隔一段时间执行一段程序相关的知识,希望对你有一定的参考价值。
可以用线程来做,每隔几秒开一个线程代码如下
public void runTask()
final long timeInterval = 120000;// 两分钟运行一次
final ThreadService threadService = new ThreadService();
Runnable runnable = new Runnable()
public void run()
while (true)
// ------- code for task to run
//你要运行的程序
// ------- ends here
try
Thread.sleep(timeInterval);
catch (InterruptedException e)
e.printStackTrace();
;
Thread thread = new Thread(runnable);
thread.start();
参考技术A
1、首先我们打开java编辑器,新建一个main函数
2、接下来在main函数中声明一个字符串
3、然后利用toCharArray()方法将字符串倒序,接下来循环输出
4、最后我们执行Java程序以后就可以得到倒序输出的字符串了
以上是关于如何在JAVA中每隔一段时间执行一段程序的主要内容,如果未能解决你的问题,请参考以下文章