Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/08/2004, 15:52
Avatar de kittya
kittya
 
Fecha de Ingreso: abril-2004
Mensajes: 260
Antigüedad: 20 años, 9 meses
Puntos: 0
Cita:
Iniciado por ZeroZ
oie kittya, me podrias decir algun sitio donde encontrar ejemplos con esa forma de hacer el stream. si no me podias poner tu lo basico, crear el stream, leer y escribir en el.
Gracias de todas formas

Saludos
espero te sirva
este es con burreredreader
try {
String archivo = "Jnior.txt",s,nom,ips;
BufferedReader sarchivo = new BufferedReader(
new FileReader(archivo));
int i=0;
while (( s = sarchivo.readLine()) != null){
// aqui leees toda una linea de codigo

}
}
} catch (IOException error) {
JOptionPane.showMessageDialog(this, error, "Error",
JOptionPane.ERROR_MESSAGE);
}


asi escribes

FileWriter fw = new FileWriter("arch.txt");
BufferedWriter bw = new BufferedWriter(fw);
PrintWriter salida = new PrintWriter(bw);
bw = new BufferedWriter(new FileWriter("arch.txt"));
salida = new PrintWriter(bw); salida.print(algo + " ");


// este con un input stream

InputStream is= this.getClass().getResourceAsStream("/prueba.txt");
try
{
if(is != null)
{
String str =""; String ss="";
int ch,i=0,l=0,ban1=0,ban2=0;
while( ( ch = is.read() ) != -1 )
{
ss=ss+String.valueOf((char) ch);
}
}
else
si.setText("no hay archivo");
}catch(ConnectionNotFoundException error)


la escritura con un outputstream
os.write();



a mi me parece mas facil la primera opcion el bufferedreader y writer

Última edición por kittya; 20/08/2004 a las 16:04