Citar
public int compRespUrl(String direcUrl) throws IOException {
try{
URL url = new URL(direcUrl);
int responseCode = ((HttpURLConnection) url.openConnection()).getResponseCode();
return responseCode;
}catch(Exception e){
System.out.println(e);
return 0;
}
try{
URL url = new URL(direcUrl);
int responseCode = ((HttpURLConnection) url.openConnection()).getResponseCode();
return responseCode;
}catch(Exception e){
System.out.println(e);
return 0;
}
El problema es que cuando la URL no está disponible, me tarda mucho en dar Time Out. ¿Como puedo controla el tiempo máximo de conexión?
Gracias.