Ver Mensaje Individual
  #4 (permalink)  
Antiguo 19/01/2009, 03:19
Tremal Naik
 
Fecha de Ingreso: abril-2007
Mensajes: 65
Antigüedad: 17 años, 8 meses
Puntos: 0
Respuesta: Descarga de ficheros

Al final tengo una solución independiente de las codificación. Gracias GreenEyed por la pista. La dejo aquí por si alguien la necesita alguna vez:

Código:
URL url = new URL("http://host");
InputStream ins = url.openConnection().getInputStream();
BufferedInputStream bufferedInput = new BufferedInputStream(ins);
        
int str;

FileOutputStream fileOutput = new FileOutputStream ("C:/mi.pdf");
BufferedOutputStream bufferedOutput = new BufferedOutputStream(fileOutput);

while((str = bufferedInput.read()) != -1){
   bufferedOutput.write(str);
}

bufferedOutput.close();