4

マーシャラーは必要ありません。既に XML ファイルを取得しています。したがって、このガイドに従って、 CDATA のコンテンツをアンマーシャリングする方法を確認しました。しかし、メインのマーシャリング部分をスキップして、アンマーシャリング部分だけを行うと、うまくいかないことがわかりました。だから私のメインは次のようなものです

Book book2 = JAXBXMLHandler.unmarshal(new File("book.xml"));
System.out.println(book2);  //<-- return null. 

私は、CDATA に何かが表示されることを期待しています。私は何かが欠けていると確信していますが、何がわかりません。

4

1 に答える 1

7

CDATA を使用して XML 要素を非整列化するために必要な特別な注意事項があります。以下は、引用した記事のデモの簡略版です。

入力.xml

以下のdescription要素には、CDATA を持つ要素があります。

<?xml version="1.0" encoding="UTF-8"?>
<book>
    <description><![CDATA[<p>With hundreds of practice questions
        and hands-on exercises, <b>SCJP Sun Certified Programmer
        for Java 6 Study Guide</b> covers what you need to know--
        and shows you how to prepare --for this challenging exam. </p>]]>
    </description>
</book>

以下は、XML コンテンツをアンマーシャリングする Java クラスです。

import javax.xml.bind.annotation.*;

@XmlRootElement
public class Book {

    private String description;

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

}

デモ

以下のデモ コードは、XML を のインスタンスに変換しますBook

import java.io.File;
import javax.xml.bind.*;

public class Demo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(Book.class);

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        File xml = new File("src/forum15518850/input.xml");
        Book book = (Book) unmarshaller.unmarshal(xml);

        System.out.println(book.getDescription());
    }

}

出力

以下、description物件価格です。

<p>With hundreds of practice questions
        and hands-on exercises, <b>SCJP Sun Certified Programmer
        for Java 6 Study Guide</b> covers what you need to know--
        and shows you how to prepare --for this challenging exam. </p>
于 2013-03-20T10:23:11.627 に答える