15/12/2014, 01:51
|
| | | Fecha de Ingreso: agosto-2014 Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 10 años, 3 meses Puntos: 182 | |
Respuesta: Leer un txt en un jlist Buenas,
Una alternativa mas sencilla si utilizas Java 7 o superior:
Código Java:
Ver original List<String> listTxt = Files.readAllLines(Paths.get("file.txt"), StandardCharsets.UTF_8); return listTxt. toArray(new String[listTxt. size()]); }
Un saludo
__________________ If to err is human, then programmers are the most human of us
Última edición por Profesor_Falken; 15/12/2014 a las 02:01 |