Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/05/2007, 21:03
vdpazmino
 
Fecha de Ingreso: mayo-2007
Mensajes: 210
Antigüedad: 17 años, 6 meses
Puntos: 8
Re: Escribir en fichero y leer array de bytes

Este es un ejemplo

String temp = "Prueba";
//Con el metodo getBytes que tiene la clase String te devuelve el un arreglo de //bytes
byte[] bytes = temp.getBytes() ;
//Para esciribir en un archivo
FileOutputStream out = new FileOutputStream("c:/archivo.txt");
out.write(bytes);
out.flush();
out.close;

Con eso se escribe en el archivo la palabra byte y para leer de un archivo
FileInputStream in = new FileInputStream("c:/archivo.txt");
in.read(bytes);
in.close();

Con el codigo anterior lee el archivo, lo que se va leyendo del archivo se guardara en el arreglo de bytes

salud2