Caros Amigos,
Estou com um problema nesse código:
Bibliotecas:
import javax.xml.parsers.;
import org.w3c.dom.;
import java.util.;
import java.io.;
import java.net.*;
Codigo:
public void lerXML(String resultado)throws Exception{
String path = "C:\\temp\\";
FileWriter fw = new FileWriter(path + "teste.xml");
fw.write(resultado);
fw.close();
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse("C:\\temp\\teste.xml");
Element elem = doc.getDocumentElement();
NodeList nl = elem.getElementsByTagName("FidelidadeCabecalho");
Element tagUsuario = (Element) nl.item(0);
String t = getChildTagValue(tagUsuario, "Saldo");
}
Erro:
cannot resolve symbol
symbol : method getChildTagValue (org.w3c.dom.Element,java.lang.String)
location: class beansVoce.VereficaStatus
String t = getChildTagValue(tagUsuario, “Saldo”);
Sera que alguem poderia me ajudar?
Valeu mesmo galera.
vcsmetallica