I know the question has been asked frequently before ,but i am unable to get the solution from any answer or search results. I have to solve this issue ASAP .. I am trying to get the latitude and the longitude from the address enter by the user but i am continue getting :

java.io.IOException: Unable to parse response from server 

I am using this code :

        Geocoder geocoder = new Geocoder(this ,Locale.getDefault());
        String newAddress = (String)saveas.getText().toString();
        List<Address> addresses = geocoder.getFromLocationName(newAddress, 1);

I tried a lot with different possible ways but nothing works... The default map application works well, when the user enter the address it shows sucessfully that address in the map..How can i do the same..?

I have added all the required permissions and i am testing it on the real device(version 2.3)...

link|improve this question

70% accept rate
what is saveas here an Edittext? – ingsaurabh Oct 31 '11 at 10:48
yes ,it is an EditText.. – nibha Oct 31 '11 at 10:51
Have you tried debugging this in Eclipse or put a log on newAddress to know what the variable contains ? – Sephy Oct 31 '11 at 10:54
and what you are entering in it Lat/Long or any address? BTW this happens when there are no results matching the address you entered – ingsaurabh Oct 31 '11 at 10:55
@saurabh: city name like mumbai ,nagpur – nibha Oct 31 '11 at 10:59
show 6 more comments
feedback

3 Answers

I dont know if it helps BTW below is snippet from my project working fine modify it to suit your needs

String newAddress = saveas.getText().toString();
searchFromLocationName(newAddress);


private void searchFromLocationName(String name){
 try {
  List<Address> result
  = myGeocoder.getFromLocationName(name, MAX_RESULT);

  if ((result == null)||(result.isEmpty())){
   Toast.makeText(AndroidgetFromLocationNameActivity.this,
     "No matches were found or there is no backend service!",
     Toast.LENGTH_LONG).show();
  }else{

   MyArrayAdapter adapter = new MyArrayAdapter(this,
         android.R.layout.simple_list_item_1, result);
   listviewResult.setAdapter(adapter);

   Toast.makeText(AndroidgetFromLocationNameActivity.this,
     "Finished!",
     Toast.LENGTH_LONG).show();
  }


 } catch (IOException e) {
  // TODO Auto-generated catch block
  e.printStackTrace();
  Toast.makeText(AndroidgetFromLocationNameActivity.this,
    "The network is unavailable or any other I/O problem occurs!",
    Toast.LENGTH_LONG).show();
 }
}
link|improve this answer
feedback

It may be useful if you set the locale parameter when creating Geocoder:

yourGeocoder = new Geocoder(this, Locale.CANADA); 

Please replace the second parameter with the best value.

I guess that the default locale value may be not corresponding the map region that you use.

link|improve this answer
feedback

Have you tried over a 3G connection? I've noticed that if you send several reverse geolocation requests from wifi, it looks like your IP is blocked after a while and the reverse geolocation won't respond for an amount of time. Switching to 3G made the request work for me when I had similar issues.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.