Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/05/2007, 15:09
ernestobalestrini
 
Fecha de Ingreso: marzo-2007
Mensajes: 129
Antigüedad: 17 años, 10 meses
Puntos: 0
Re: ¿como leer una linea de un archivo?

ve a ver si eso te ayuda lo que le falta es una condicion que diga...si el contador de vecez que pasa es igual a 15 muestras :)


Cita:
FileInputStream ope = new FileInputStream("Trashers.txt");// PARA LEER EL ARCHIVO OPEAICONES
DataInputStream ds = new DataInputStream(ope); // PARA LEER EL ARCHIVO OPEAICONES
String linea;

while((linea = ds.readLine())!=null) // MIENTRAS EXISTA OTRA LINEA ESCRITA
{