try {
Timer timer = new Timer();// 实例化Timer
timer.schedule(new TimerTask() {
public void run() {
try {
// 需要执行的内容
xxxMethod();
} catch (Exception e) {
e.printStackTrace();
} finally {
timer.cancel(); // 执行完毕注销timer
}
}
}, 180000);// 1000 * 60 * 3 (3分钟)
} catch (Exception e) {
e.printStackTrace();
}