Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/09/2011, 04:36
Avatar de ir3al
ir3al
 
Fecha de Ingreso: mayo-2010
Ubicación: Talavera de la Reina
Mensajes: 110
Antigüedad: 14 años, 7 meses
Puntos: 4
Respuesta: Descarga web en java

Me da una excepción la cual me dice que el host que le pongo no existe, os dejo la excepción:

Código Java:
Ver original
  1. 09-16 14:05:04.540: WARN/DEBUG(18686): java.net.UnknownHostException: www.google.es

Pero la dirección si existe y nose porque es, os dejo el codigo que tengo puesto:
Código Java:
Ver original
  1. public String GetCookie(){
  2.         String cookie = "";
  3.         String dir = "https://sescam.jccm.es/web1/sHome.do?main=/ciudadanos/citaPrevia/citaPreLogin.jsp";
  4.        
  5.         HttpClient client = new DefaultHttpClient(httpParameters);
  6.         HttpPost post = new HttpPost(dir);
  7.        
  8.         try{
  9.             Log.w("DEBUG", "1");
  10.             HttpResponse response = client.execute(post);
  11.             //HttpEntity entity = response.getEntity();
  12.             HeaderIterator it = response.headerIterator("Set-Cookie");
  13.             Log.w("DEBUG", "2");
  14.            
  15.             while(it.hasNext()){
  16.                 Log.w("DEBUG", it.next().toString());
  17.             }//FIN while
  18.            
  19.             return cookie;
  20.            
  21.         }catch(Exception e){
  22.             Log.w("DEBUG", e.toString());
  23.             return "";         
  24.         }//FIN try-catch
  25.        
  26.     }//FIN GetCookie

¿Alguien me puede ayudar?
Un saludo.