android DOM parsing with entities in tags
问题 I might like to parse the following XML that contains entrities. <node> <text><title>foo fo <BR>bar bar </title></text> </node> The parsing works. But after the entrities I do not receive any output. Using CDATA is not possible at the position. I'm using the following code: urlConnection.getInputStream()); DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); factory.setExpandEntityReferences(false); DocumentBuilder builder = factory.newDocumentBuilder(); doc = builder.parse