7

XStreamを使用していて、XMLサンプルがあります。

<person>
    <firstname>Joe</firstname>
    <lastname>Walnes</lastname>
    <phone value="1234-456" />
    <fax value="9999-999" />
</person>

そしてそれをクラスにマッピングしたい

public class Person {

    private String firstname;
    private String lastname;
    private String phone;
    private String fax;

}

したがって、アイデアは、ネストされた要素の属性を現在のオブジェクトにマップすることです。すぐに使えるコンバーターを見つけようとしましたが、成功しませんでした。新しいコンバーターを実装することでそれは可能だと思いますが、誰かがすでにこれを行っている可能性があります。または、私が見つけていない解決策があります。

更新しました:

私が実装しようとしているアイデアは、作成およびマッピングされる不要なエンティティを省略することです。電話とファックスのエンティティはまったく必要ありません。モデルに必要なのはそれらの属性だけです。解析しようとしているXMLスキーマはサードパーティであり、変更できません。

4

3 に答える 3

5

私はそれを行うすぐに使えるコンバーターを知りませんが、それを書くのはかなり簡単です

import com.thoughtworks.xstream.converters.*;
import com.thoughtworks.xstream.io.*;

public class ValueAttributeConverter implements Converter {
  public boolean canConvert(Class cls) {
    return (cls == String.class);
  }

  public void marshal(Object source, HierarchicalStreamWriter w, MarshallingContext ctx) {
    w.addAttribute("value", (String)source);
  }

  public Object unmarshal(HierarchicalStreamReader r, UnmarshallingContext ctx) {
    return r.getAttribute("value");
  }
}

アノテーションを使用して、コンバータを関連フィールドにアタッチできます

import com.thoughtworks.xstream.annotations.*;

@XStreamAlias("person")
public class Person {

    private String firstname;
    private String lastname;

    @XStreamConverter(ValueAttributeConverter.class)
    private String phone;

    @XStreamConverter(ValueAttributeConverter.class)
    private String fax;

    // add appropriate constructor(s)

    /** For testing purposes - not required by XStream itself */
    public String toString() {
      return "fn: " + firstname + ", ln: " + lastname +
             ", p: " + phone + ", f: " + fax;
    }
}

これを機能させるには、注釈を読み取るようにXStreamに指示するだけです。

XStream xs = new XStream();
xs.processAnnotations(Person.class);
Person p = (Person)xs.fromXML(
  "<person>\n" +
  "  <firstname>Joe</firstname>\n" +
  "  <lastname>Walnes</lastname>\n" +
  "  <phone value='1234-456' />\n" +
  "  <fax value='9999-999' />\n" +
  "</person>");
System.out.println(p);
// prints fn: Joe, ln: Walnes, p: 1234-456, f: 9999-999
于 2012-09-19T10:10:17.890 に答える
4

注: 私はEclipseLink JAXB(MOXy)のリーダーであり、JAXB(JSR-222)エキスパートグループのメンバーです。

XStream以外のライブラリを使用することに慣れている場合は、 EclipseLink JAXB(MOXy)@XmlPathの拡張機能を活用する方法を以下に示します。

@XmlPathアノテーションを使用すると、フィールド/プロパティをXPathによってXMLドキュメント内の場所にマップできます(http://blog.bdoughan.com/2010/07/xpath-based-mapping.html参照)。

package forum12425401;

import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.XmlPath;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Person {

    private String firstname;
    private String lastname;

    @XmlPath("phone/@value")
    private String phone;

    @XmlPath("fax/@value")
    private String fax;

}

jaxb.properties

MOXyをJAXBプロバイダーとして指定するには、jaxb.propertiesドメインモデルと同じパッケージで呼び出されるファイルに次のエントリを含める必要があります(http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-asを参照)。 -your.html):

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory

デモ

以下のコードは、XMLをドメインモデルに変換してから、ドメインモデルをXMLに書き戻します。

package forum12425401;

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

public class Demo {

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

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        File xml = new File("src/forum12425401/input.xml");
        Person person = (Person) unmarshaller.unmarshal(xml);

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.marshal(person, System.out);
    }

}

input.xml / Output

<?xml version="1.0" encoding="UTF-8"?>
<person>
   <firstname>Joe</firstname>
   <lastname>Walnes</lastname>
   <phone value="1234-456"/>
   <fax value="9999-999"/>
</person>
于 2012-09-20T20:56:29.463 に答える
0

XStreamエイリアスチュートリアルの「属性エイリアシング」セクションを参照してください:http://x-stream.github.io/alias-tutorial.html

于 2012-09-18T19:35:47.557 に答える