converter uma lista de string para lista de inteiros java
package bola;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import java.util.List;
public class LerArquivo {
private static Stream<Integer> ints(String s) {
return Stream.of(s.replace(";", "").split(" ")).map(Integer::parseInt);
}
public static List<Integer> leitura() throws IOException {
String path = "D:\\Conteudo\\teste.txt";
Stream<String> linhas = Files.readAllLines(new File(path).toPath()).stream();
return linhas.flatMap(LerArquivo::ints).collect(Collectors.toList());
}
public static void main(String[] args) throws IOException {
System.out.println(LerArquivo.leitura());
}
}