gpt4 book ai didi

android - android.location.geocoder 的问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:35:30 27 4
gpt4 key购买 nike

我知道网站上有很多关于 IOExeption 的问题:服务不可用......我已经检查了我能找到的关于这个主题的所有答案......我我正在将其作为 async task 运行,这似乎工作正常但仍然出现相同的异常。

我在之前的尝试中使用了 isPresent(),尽管它不在以下代码中,而且我使用的是同一部手机。我有互联网许可。我尝试将目标更改为 google api 以查看是否是问题所在,但没有任何区别。

这是第四年项目的重要组成部分,因此任何帮助都是非常重要的。 ps 最近之前从未使用过 java 或 android,所以请原谅任何看起来像编码的菜鸟。

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

view1 = (TextView) findViewById(R.id.textView1);
view2 = (TextView)findViewById(R.id.textView2);
view3 = (TextView)findViewById(R.id.textView4);
b1 = (Button) findViewById(R.id.button1);

locationManager =
(LocationManager) this.getSystemService(Context.LOCATION_SERVICE);

//provider =
// locationManager.getProvider(LocationManager.GPS_PROVIDER);

final LocationListener listener = new LocationListener() {

@Override
public void onLocationChanged(Location location) {
view2.setText(Double.toString(location.getLatitude()));
view3.setText(Double.toString(location.getLongitude()));
Double lat = Double.valueOf(location.getLatitude());
Double longTemp = Double.valueOf(location.getLatitude());
new geo().execute(lat,longTemp);
}

@Override
public void onProviderDisabled(String provider) {
// TODO Auto-generated method stub

}

@Override
public void onProviderEnabled(String provider) {
// TODO Auto-generated method stub

}

@Override
public void onStatusChanged(String provider, int status,
Bundle extras) {
// TODO Auto-generated method stub

}

};
b1.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
locReqest();
}

private void locReqest() {
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 10000, 0, listener);
}
});

}

class geo extends AsyncTask<Double, Void, String>{
Geocoder geocoder = new Geocoder(getApplicationContext(), Locale.getDefault());
@Override
protected String doInBackground(Double... params) {
Address address = null;
List<Address> addresses = null;
try {
// Call the synchronous getFromLocation() method by passing in the lat/long values.
addresses = geocoder.getFromLocation(params[0].doubleValue(),params[1].doubleValue(), 1);
address = addresses.get(0);
if (address != null){
return "Got your address : " + address.getCountryName().toString();
}
} catch (IOException e) {
e.printStackTrace();
return "failed";
}
return"fail";
}
@Override
protected void onPostExecute(String result) {
// TODO Auto-generated method stub
super.onPostExecute(result);
//view1.setText(result);
Toast.makeText(getApplicationContext(), "The address is: " + result, Toast.LENGTH_LONG).show();
}


}

这是日志

12-16 23:06:53.855: W/System.err(23578): java.io.IOException: Service not Available
12-16 23:06:53.865: W/System.err(23578): at android.location.Geocoder.getFromLocation(Geocoder.java:136)
12-16 23:06:53.865: W/System.err(23578): at com.boggerTech.local.Main$geo.doInBackground(Main.java:102)
12-16 23:06:53.880: W/System.err(23578): at com.boggerTech.local.Main$geo.doInBackground(Main.java:1)
12-16 23:06:53.900: W/System.err(23578): at android.os.AsyncTask$2.call(AsyncTask.java:264)
12-16 23:06:53.900: W/System.err(23578): at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)
12-16 23:06:53.905: W/System.err(23578): at java.util.concurrent.FutureTask.run(FutureTask.java:137)
12-16 23:06:53.915: W/System.err(23578): at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:208)
12-16 23:06:53.915: W/System.err(23578): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1076)
12-16 23:06:53.915: W/System.err(23578): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:569)
12-16 23:06:53.920: W/System.err(23578): at java.lang.Thread.run(Thread.java:856)
12-16 23:07:10.440: W/System.err(23578): java.io.IOException: Service not Available

最佳答案

Geocoder.isPresent() 可以在某些设备上返回 false。

如果它返回 true 而您仍然遇到问题,您可以使用 The Google Geocoding API 创建自己的地理编码器

我制作了一个独立于平台的Geocoder 库,可在github 获得。和 Maven 中心

dependencies {
compile 'com.github.doctoror.geocoder:library:[version]'
}

编辑:之前的答案包含一个实现 Geocoder 的简短示例。

关于android - android.location.geocoder 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13906380/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com