等待服务器响应的时间waiting,java.io.IOException:等待服务器响应超时

实际上我找到了地址的纬度和经度,例如(硬摇滚咖啡馆,等等),但最长时间是java.io.IOException: Timed out waiting for response from server。因此,每当我使用google api获得此异常时,两个响应都会有所不同。如果我在某些地方使用google api,它就是班加罗尔的回归中心。

private class GeocoderTask extends AsyncTask> {

@Override

protected void onPreExecute() {

Dialog.setCancelable(false);

Dialog.setMessage(getString(R.string.serachingForParking));

Dialog.show();

}

@Override

protected List

doInBackground(String... locationName) {

// Creating an instance of Geocoder class

Geocoder geocoder = new Geocoder(getBaseContext());

List

addresses = null;

try {

// Getting a maximum of 3 Address that matches the input text

addresses = geocoder.getFromLocationName(locationName[0], 3);

} catch (IOException e) {

e.printStackTrace();

} catch (Exception e) {

e.printStackTrace();

}

return addresses;

}

@Override

protected void onPostExecute(List

addresses) {

try {

if (Dialog.isShowing()) {

Dialog.dismiss();

}

if (addresses == null || addresses.size() == 0) {

//

} else {

for (int i = 0; i < addresses.size(); i++) {

Address address = (Address) addresses.get(0);

latlang = new LatLng(address.getLatitude(),

address.getLongitude());

}

} catch (Exception e) {

// TODO: handle exception

}

}

}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值