Tengo una consulta rápida que quizá me puedan ayudar.
Estoy probando descargar un archivo desde la web que tiene una contraseña.
Sin la misma, mi codigo anda.
La pregunta es...como agregarle a la validación del URLConnection cuando el archivo a bajar tiene contraseña? Me sirve el getAuthority()?
Parte del código es este:
Código ANDROID:
Ver original
..... try { URL url = new URL(f_url[0]); URLConnection conection = url.openConnection(); conection.connect(); // this will be useful so that you can show a tipical 0-100% progress bar int lenghtOfFile = conection.getContentLength(); // download the file InputStream input = new BufferedInputStream(url.openStream(), 12000/*8192*/); // Output stream String nombre_arch = "/....."+xxxxxx; OutputStream output = new FileOutputStream(nombre_arch); byte data[] = new byte[1024]; ....
Gracias!!