en mediante un JTextArea de nombre "Texto" y eligiendo el fichero mediante un
JFileChooser.
String Text="";
try{
JFileChooser fc=new JFileChooser(System.getProperty("user.dir"));
fc.showOpenDialog(this);
File Abrir=fc.getSelectedFile(); //Devuelve el File que vamos a leerName
if(Abrir!=null){
Texto.setText("");
FileReader Fichero=new FileReader(Abrir);
BufferedReader leer=new BufferedReader(Fichero);
while((Text=leer.readLine())!=null){
Texto.append(Text+ "\n"); //append Concatena la linea leida
}
leer.close();
}
}
catch(IOException ioe){
System.out.println(ioe);
}
7 comentarios:
Muchisimas gracias por ese codigo..... Me salvo de un problema....
Muchas Gracias
buen aporte compadre... me salvaste que justo en cualquier otra pagina no salia..
te pasaste felicitacions
Muchas gracias, esto realmente me sirvió, me sacaste de un gran problema.
Muchas Gracias, muy útil.
Excelente, no lo habia pensado asi; tambien hice algo parecido, espero servir de aporte... http://usandojava.blogspot.com/2012/01/escribiendo-y-leyendo-en-un-archivo-de.html
Gracias, excelente información!!
Visita mi chat sin registro Chat gratis
Publicar un comentario