android 定时器发送心跳包,Android 后台Service : 向服务器发送心跳包

publicclassHeartbeatServiceextendsServiceimplementsRunnable

{

privateThread          mThread;

publicintcount           =0;

privatebooleanisTip           =true;

privatestaticString   mRestMsg;

privatestaticString   KEY_REST_MSG    ="KEY_REST_MSG";

@Override

publicvoidrun()

{

while(true)

{

try

{

if(count >1)

{

Log.i("@qi","offline");

count = 1;

if(isTip)

{

//判断应用是否在运行

ActivityManager am = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);

List list = am.getRunningTasks(3);

for(RunningTaskInfo info : list)

{

if(info.topActivity.getPackageName().equals("org.yhn.demo"))

{

//通知应用,显示提示“连接不到服务器”

Intent intent = newIntent("org.yhn.demo");

intent.putExtra("msg",true);

sendBroadcast(intent);

break;

}

}

isTip = false;

}

}

if(mRestMsg !=""&& mRestMsg !=null)

{

//向服务器发送心跳包

sendHeartbeatPackage(mRestMsg);

count += 1;

}

Thread.sleep(1000*3);

}

catch(InterruptedException e)

{

e.printStackTrace();

}

}

}

privatevoidsendHeartbeatPackage(String msg)

{

HttpGet httpGet = newHttpGet(msg);

DefaultHttpClient httpClient = newDefaultHttpClient();

// 发送请求

HttpResponse httpResponse = null;

try

{

httpResponse = httpClient.execute(httpGet);

}

catch(Exception e)

{

e.printStackTrace();

}

if(httpResponse ==null)

{

return;

}

// 处理返回结果

finalintresponseCode = httpResponse.getStatusLine().getStatusCode();

if(responseCode == HttpStatus.SC_OK)

{

//只要服务器有回应就OK

count = 0;

isTip = true;

}

else

{

Log.i("@qi","responseCode "+ responseCode);

}

}

@Override

publicIBinder onBind(Intent intent)

{

returnnull;

}

@Override

publicvoidonCreate()

{

super.onCreate();

}

@Override

publicvoidonDestroy()

{

super.onDestroy();

}

publicvoidonStart(Intent intent,intstartId)

{

Log.i("@qi","service onStart");

//从本地读取服务器的URL,如果没有就用传进来的URL

mRestMsg = getRestMsg();

if(mRestMsg ==null|| mRestMsg =="")

{

mRestMsg = intent.getExtras().getString("url");

}

setRestMsg(mRestMsg);

mThread = newThread(this);

mThread.start();

count = 0;

super.onStart(intent, startId);

}

publicString getRestMsg()

{

SharedPreferences prefer = getSharedPreferences("settings.data", Context.MODE_PRIVATE);

Log.i("@qi","getRestMsg() "+ prefer.getString(KEY_REST_MSG,""));

returnprefer.getString(KEY_REST_MSG,"");

}

publicvoidsetRestMsg(String restMsg)

{

SharedPreferences prefer = getSharedPreferences("settings.data", Context.MODE_PRIVATE);

SharedPreferences.Editor editor = prefer.edit();

editor.putString(KEY_REST_MSG, restMsg);

editor.commit();

}

}

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值