Estou tentando pegar tag CFOP de NFe e colocar num ArrayLista, consegui pegar, mas está mostrando apenas a tag ao invés dos valores.
Gostaria de exibir os valores.
Usei o seguinte trecho para pegar.
NodeList list = document.getElementsByTagName("CFOP");
ArrayList<String> nodes = (ArrayList<String>) IntStream.range(0, list.getLength())
.mapToObj(list::item)
.map(n -> n.getNodeName())
.collect(Collectors.toList());