Pregunta

bien, así que estoy tratando de leer un archivo de texto. y luego dividirlo en líneas que en realidad representan procesos en un ArrayList tabla de procesos. entonces yo quiero dividir todas las fichas en la línea y hacer todas las fichas de la línea de un ArrayList de nuevo hasta el momento esto es todo lo que tengo:

no su trabajo correctamente. estoy consiguiendo:

processes:[[netscape, 1, 00ACF3, 20990, 12DFFE, 000F00, 000000, 000000, 000000, AF,   011356, 000000, 000000, 4FFFFF, 39AB00, 000000, 0A0B92, FFFFFF]]
processes:[[netscape, 1, 00ACF3, 20990, 12DFFE, 000F00, 000000, 000000, 000000, AF, 011356, 000000, 000000, 4FFFFF, 39AB00, 000000, 0A0B92, FFFFFF, textpad, 2, 391BCA, 871BAF, DEA14C, EEFC30, 000000, 000000, 0000AA, AF, 000000, 000000, 000000, 000000, 000000, FFFFFF, B4344D, 000000], [netscape, 1, 00ACF3, 20990, 12DFFE, 000F00, 000000, 000000, 000000, AF, 011356, 000000, 000000, 4FFFFF, 39AB00, 000000, 0A0B92, FFFFFF, textpad, 2, 391BCA, 871BAF, DEA14C, EEFC30, 000000, 000000, 0000AA, AF, 000000, 000000, 000000, 000000, 000000, FFFFFF, B4344D, 000000]]

BufferedReader inputStream = null;
ArrayList<ArrayList<String>> lines = new ArrayList<ArrayList<String>>();
ArrayList<String> tokens = new ArrayList<String>();
/* read the file*/
try {
    inputStream = new BufferedReader(new FileReader("p56.txt"));

    while (true) {
        /* while the file was read*/
        /* now. split the file into the lines.*/
        String line = inputStream.readLine();
        if (line == null) {
            break;
        }
        //if there are no more lines left. break

        // split the lines into tokens and make into an arraylist*/
        Scanner tokenize = new Scanner(line);
        while (tokenize.hasNext()) {
            /*while there are still more*/
            tokens.add(tokenize.next());
        }
        lines.add(tokens);

        System.out.println("processes:" + lines);
    }
}
¿Fue útil?

Solución

Es necesario mover la línea

ArrayList<String> tokens = new ArrayList<String>();

a la derecha antes de

while (tokenize.hasNext()) {

A continuación, se creará una nueva lista de fichas antes de procesar cada línea. De lo contrario va a terminar con una lista de todas las fichas para todas las líneas del archivo.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top