2 个解决方案
#1
你可以使用java的daemon 功能的,看看网上的相关写daemon的程序,可以在daemon程序里加入定时器来定时执行某个动作的.具体你自己查查资料了.
这里就不写编码例子了.
这里就不写编码例子了.
#2
public Class YourClass implements java.awt.event.ActionListener
{
javax.swing.Timer timer;
public void actionPerformed(ActionEvent evt)
{
doWork();
}
public void YourClass()
{
timer=new Timer(delay, this);
timer.start();
}
}
{
javax.swing.Timer timer;
public void actionPerformed(ActionEvent evt)
{
doWork();
}
public void YourClass()
{
timer=new Timer(delay, this);
timer.start();
}
}
#1
你可以使用java的daemon 功能的,看看网上的相关写daemon的程序,可以在daemon程序里加入定时器来定时执行某个动作的.具体你自己查查资料了.
这里就不写编码例子了.
这里就不写编码例子了.
#2
public Class YourClass implements java.awt.event.ActionListener
{
javax.swing.Timer timer;
public void actionPerformed(ActionEvent evt)
{
doWork();
}
public void YourClass()
{
timer=new Timer(delay, this);
timer.start();
}
}
{
javax.swing.Timer timer;
public void actionPerformed(ActionEvent evt)
{
doWork();
}
public void YourClass()
{
timer=new Timer(delay, this);
timer.start();
}
}