Java XPath umlaut/vowel parsing
问题 I want to parse the following xml structure: <?xml version="1.0" encoding="utf-8"?> <documents> <document> <element name="title"> <value><![CDATA[Personnel changes: Müller]]></value> </element> </document> </documents> For parsing this element name="????? structure I use XPath in the following way: XPath xPath = XPathFactory.newInstance().newXPath(); String currentString = (String) xPath.evaluate("/documents/document/element[@name='title']/value",pCurrentXMLAsDOM, XPathConstants.STRING); The