Aparece el error "El host de destino no debe ser nulo ni estar configurado en parámetros".El nombre de host no puede ser nulo en HttpResponse para android
- HAGO tienen permisos de Internet en mi archivo de manifiesto
- he puesto 'http: //' antes de mi Url
- HAGO codificar la URL
Este es mi código:
String url = "http://maps.google.com/maps/api/directions/json?origin=1600 Pennsylvania Avenue NW, Washington, DC 20500&destination=1029 Vermont Ave NW, Washington, DC 20005&sensor=false";
HttpClient httpclient = new DefaultHttpClient();
String goodURL = convertURL(url);//change weird characters for %etc
HttpPost httppost = new HttpPost(goodURL);
HttpResponse response = httpclient.execute(httppost);
En la 5ª línea (última línea arriba), mi programa arroja una excepción. aquí es el error exacto:
java.lang.IllegalArgumentException: Host name may not be null
I Do codificar mi cadena en convertURL método ...
goodURL = http://maps.google.com/maps/api/directions/json?origin=3%20Cedar%20Ave%2c%20Highland%20Park%2c%20NJ%2008904&destination=604%20Bartholomew%20Road%2c%20Piscataway%2c%20New%20Jersey%2008854&sensor=false
¿Alguna sugerencia? Gracias!
¡No puede haber espacios en la URL! déjame ver cómo estás codificando tu URL – Samer
Tu problema probablemente esté en tu función convertURL ... usa un depurador y comprueba para ver qué está devolviendo. – Joel
¡Hola! Estaba pasando toda la URL, la modifiqué pero todavía me da el error ... goodURL = 'http://maps.google.com/maps/api/directions/json?origin=3%20Cedar%20Ave%2c % 20Highland% 20Park% 2c% 20NJ% 2008904 & destination = 604% 20Bartholomew% 20Road% 2c% 20Piscataway% 2c% 20New% 20Jersey% 2008854 & sensor = false' – cafesanu