如何使用按钮onclick将语音短信发送到另一个联系号码,我也想在这里自动安排,就像用户点击按钮一样,语音通话需要每隔1分钟重复发送一次。
请帮我提供一些指导和教程。
答案 0 :(得分:1)
您应该查看以下链接
http://code.google.com/p/google-voice-java/w/list
[编辑1]
重复任务:
new Timer().scheduleAtFixedRate(task, after, interval);
任务是要执行的方法
在初始执行之后
(间隔重复执行的时间)
[编辑2]
package com.tutorialspoint;
import java.util.*;
public class TimerDemo {
public static void main(String[] args) {
// creating timer task, timer
TimerTask tasknew = new TimerScheduleFixedRate();
Timer timer = new Timer();
// scheduling the task at fixed rate
timer.scheduleAtFixedRate(tasknew,new Date(),1000);
}
// this method performs the task
public void run() {
System.out.println("working at fixed rate");
}
}
让我们编译并运行上面的程序,这将产生以下结果。
以固定利率工作
以固定利率工作
以固定利率工作
以固定费率工作等等......