Sax - ExpatParser$ParseException
问题 I'm making an Android application that reads an XML Internet. This application uses SAX to parse XML. This is my code for the part of parsing: public LectorSAX(String url){ try{ SAXParserFactory spf=SAXParserFactory.newInstance(); SAXParser sp = spf.newSAXParser(); DefaultHandler lxmlr=new LibraryXMLReader() ; sp.parse(url, lxmlr); nodo=((LibraryXMLReader)lxmlr).getNodoActual(); }catch(ParserConfigurationException e){ System.err.println("Error de parseo en LectorSAX.java: "+e); }catch