Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Xerces (xercesImpl-2.8.1.jar) を使用して Xml 文字列を XML DOM オブジェクトに変換しようとしています。
ただし、次のメソッドのみを提供しているようで、XML文字列を取得してオブジェクトに変換するメソッドは提供していません。
parse(File f)
parse(InputSource is)
parse(InputStream is)
parse(String uri)
どんな指針も素晴らしいでしょう。
XML 文字列をReader
Reader
java.io.StringReader xmlReader = new java.io.StringReader(xml); Document doc = docBuilder.parse(new InputSource(xmlReader));