web-dev-qa-db-ja.com

JavaでXMLを含む文字列を解析し、ルートノードの値を取得する方法は?

を含む文字列形式のXMLがあります

<message>HELLO!</message> 

文字列「Hello!」を取得するにはどうすればよいですかXMLから?それはとんでもなく簡単なはずですが、私は迷っています。 XMLはドキュメントではなく、単なる文字列です。

34
ohGosh

[〜#〜] jdom [〜#〜]

String xml = "<message>HELLO!</message>";
org.jdom.input.SAXBuilder saxBuilder = new SAXBuilder();
try {
    org.jdom.Document doc = saxBuilder.build(new StringReader(xml));
    String message = doc.getRootElement().getText();
    System.out.println(message);
} catch (JDOMException e) {
    // handle JDOMException
} catch (IOException e) {
    // handle IOException
}

XercesDOMParserの使用:

String xml = "<message>HELLO!</message>";
DOMParser parser = new DOMParser();
try {
    parser.parse(new InputSource(new Java.io.StringReader(xml)));
    Document doc = parser.getDocument();
    String message = doc.getDocumentElement().getTextContent();
    System.out.println(message);
} catch (SAXException e) {
    // handle SAXException 
} catch (IOException e) {
    // handle IOException 
}

[〜#〜] jaxp [〜#〜]インターフェースの使用:

String xml = "<message>HELLO!</message>";
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = null;
try {
    db = dbf.newDocumentBuilder();
    InputSource is = new InputSource();
    is.setCharacterStream(new StringReader(xml));
    try {
        Document doc = db.parse(is);
        String message = doc.getDocumentElement().getTextContent();
        System.out.println(message);
    } catch (SAXException e) {
        // handle SAXException
    } catch (IOException e) {
        // handle IOException
    }
} catch (ParserConfigurationException e1) {
    // handle ParserConfigurationException
}
76
Wayne Burkett

ベースJREが提供するツールを使用することもできます。

String msg = "<message>HELLO!</message>";
DocumentBuilder newDocumentBuilder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document parse = newDocumentBuilder.parse(new ByteArrayInputStream(msg.getBytes()));
System.out.println(parse.getFirstChild().getTextContent());
8
pimaster

JAXBでこれを行うことができます(実装はJava SE 6)に含まれています)。

import Java.io.StringReader;
import javax.xml.bind.*;
import javax.xml.transform.stream.StreamSource;

public class Demo {

    public static void main(String[] args) throws Exception {
        String xmlString = "<message>HELLO!</message> ";
        JAXBContext jc = JAXBContext.newInstance(String.class);
        Unmarshaller unmarshaller = jc.createUnmarshaller();
        StreamSource xmlSource = new StreamSource(new StringReader(xmlString));
        JAXBElement<String> je = unmarshaller.unmarshal(xmlSource, String.class);
        System.out.println(je.getValue());
    }

}

出力

HELLO!
7
bdoughan

上記の回答の1つは、XML文字列を不要なバイトに変換することを示しています。代わりに、InputSourceを使用して、StringReaderを指定できます。

String xmlStr = "<message>HELLO!</message>";
DocumentBuilder db = DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document doc = db.parse(new InputSource(new StringReader(xmlStr)));
System.out.println(doc.getFirstChild().getNodeValue());
4
Aniket Thakur

XMLの読み取りを正しく行っているか、うまくいくために危険なことをしています。適切に行うことは、適切なドキュメント解析を使用することです。

または...危険なのは、wisuzuの応答でカスタムテキスト解析を使用するか、マッチャーで正規表現を使用することです。

1
Steven

String classをご覧になると思います。それを行うには複数の方法があります。 substring(int,int)indexOf(int)lastIndexOf(int)はどうですか?

0
wisuzu