martes, 10 de noviembre de 2009

Leer un archivo inmenso en JAVA

Ahora debo leer un archivo muy grande en Java y no tiene \n (fin de línea) en su contenido. Unicamente EOF.

Entonces procedo a leerlo mediante un buffer

FileInputStream in = new FileInputStream( "archivoMuyGrande.map");

int BUF_LEN = 65536;
byte[] buf = new byte[BUF_LEN];
int bytesRead = -1;
while((bytesRead = in.read(buf, 0, BUF_LEN)) > -1) {
    String entry = new String(buf);
    System.out.print(entry);
}



Compartir:

0 comentarios:

Publicar un comentario