1

如何使用按钮 onclick 将语音短信发送到另一个联系人号码,我也想在这里自动安排,比如一旦用户点击按钮,然后语音呼叫需要每 1 分钟重复发送一次。

请帮我提供一些指导和教程。

4

1 回答 1

1

你应该看看下面的链接

http://code.google.com/p/google-voice-java/w/list

[编辑 1]

对于重复任务:

new Timer().scheduleAtFixedRate(task, after, interval);

task 是要执行的方法

在初始执行时间之后

(间隔重复执行的时间)

[编辑 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");      
   }    
}

让我们编译并运行上面的程序,这将产生以下结果。

以固定费率工作

以固定费率工作

以固定费率工作

以固定费率工作等等......

于 2012-12-25T09:05:17.373 回答