У меня есть приложение, и мне нужно разобрать XML.Когда я сделал это на Java Project, работает.Но когда я пытаюсь сделать это в Android Project, URL не может подключиться, я использую XPath.Код:
частная статическая конечная строка STRING_XML = "http://localhost:50645/WebServiceClientes.asmx/ListaReservas";
....
// prepare a URL to the geocoder
URL url = new URL(STRING_XML);
// prepare an HTTP connection to the geocoder
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
Document geocoderResultDocument = null;
try {
// open the connection and get results as InputSource.
conn.connect();
InputSource geocoderResultInputSource = new InputSource(conn.getInputStream());
// read result and parse into XML Document
geocoderResultDocument = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(geocoderResultInputSource);
} finally {
conn.disconnect(); //The debug stops here, so, Disconnect!!!
}