4

我需要在后台每小时执行一次网络服务

每隔一小时,将检查 Internet 是否可用,然后执行 Web 服务并更新数据。

我怎样才能做到这一点?

我的后台服务

public class MyService extends Service {

   String tag="TestService";
   @Override
   public void onCreate() {
       super.onCreate();
       Toast.makeText(this, "Service created...", Toast.LENGTH_LONG).show();      
       Log.i(tag, "Service created...");
   }

   @Override
   public void onStart(Intent intent, int startId) {      
       super.onStart(intent, startId);  
       if(isInternet)
       {
           AsyTask web= new AsyTask();
           web.execute();
       }
       Log.i(tag, "Service started...");
   }
   @Override
   public void onDestroy() {
       super.onDestroy();
       Toast.makeText(this, "Service destroyed...", Toast.LENGTH_LONG).show();
   }

   @Override
   public IBinder onBind(Intent intent) {
       return null;

   }
4

2 回答 2

3

这个想法是使用 AlarmManager 每小时启动一个后台服务。

设置警报管理器以每 60 分钟启动一次后台服务。这可以在任何活动中完成。

    startServiceIntent = new Intent(context,
            WebService.class);
    startWebServicePendingIntent = PendingIntent.getService(context, 0,
            startServiceIntent, 0);

    alarmManager = (AlarmManager) context
            .getSystemService(Context.ALARM_SERVICE);
    alarmManager.setRepeating(AlarmManager.RTC_WAKEUP,
            System.currentTimeMillis(), 60*1000*60,
            startWebServicePendingIntent);

创建一个WebService扩展类,Service然后在服务的方法中添加与服务器同步数据的onStartCommand()方法。另外,不要忘记在清单中声明服务。

编辑 1:

public class WebService extends Service {

   String tag="TestService";
   @Override
   public void onCreate() {
       super.onCreate();
       Toast.makeText(this, "Service created...", Toast.LENGTH_LONG).show();      
       Log.i(tag, "Service created...");
   }

   @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
       super.onStart(intent, startId);  
       if(isInternet)
       {
           AsyTask web= new AsyTask();
           web.execute();
       }
       Log.i(tag, "Service started...");
   }
   @Override
   public void onDestroy() {
       super.onDestroy();
       Toast.makeText(this, "Service destroyed...", Toast.LENGTH_LONG).show();
   }

   @Override
   public IBinder onBind(Intent intent) {
       return null;

   }
于 2014-06-14T06:01:30.230 回答
0

在定时器任务的 run 方法中添加调用 webservice 的代码,如下所示

Timer timer = new Timer();
timer.schedule(new TimerTask() {
public void run() {
   if(isInternet)
   {
       AsyTask web= new AsyTask();
       web.execute();
   }
   Log.i(tag, "Service started...");
}
}, 0, 3600000);  
于 2014-06-14T06:09:00.560 回答