web-dev-qa-db-ja.com

Marshallerを使用したJava ObjectからJsonへの変換

Marshallerを使用してJavaオブジェクトをXMLに変換するのは非常に簡単です。しかし、Marshallerを単独で使用して、JavaオブジェクトをJSON gsonやXstreamのようなものを使用するのは良いことですが、Marshallerを使用する必要があります。

前もって感謝します。

18
Arun

注:私は EclipseLink JAXB(MOXy) リードおよび JAXB(JSR-222) エキスパートグループのメンバー、

以下は、JAXBプロバイダーとしてMOXyを使用している場合にこれを行う方法です。

Javaモデル

顧客

import Java.util.*;
import javax.xml.bind.annotation.*;

@XmlRootElement(namespace="http://www.example.com")
@XmlType(namespace="http://www.example.com")
@XmlAccessorType(XmlAccessType.FIELD)
public class Customer {

    @XmlAttribute
    private int id;

    @XmlElement(namespace="http://www.example.com")
    private String firstName;

    @XmlElement(namespace="http://www.example.com", nillable=true)
    private String lastName;

    @XmlElement(namespace="http://www.example.com")
    private List<PhoneNumber> phoneNumbers = new ArrayList<PhoneNumber>();

}

PhoneNumber

import javax.xml.bind.annotation.*;

@XmlAccessorType(XmlAccessType.FIELD)
public class PhoneNumber {

    @XmlAttribute
    private String type;

    @XmlValue
    private String number;

}

jaxb.properties

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

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

デモコード

input.xml

<?xml version="1.0" encoding="UTF-8"?>
<ns0:customer xmlns:ns0="http://www.example.com" id="123">
   <ns0:firstName>Jane</ns0:firstName>
   <ns0:lastName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
   <ns0:phoneNumbers type="work">555-1111</ns0:phoneNumbers>
</ns0:customer>

デモ

以下のデモコードでは、同じJAXBメタデータを使用してXMLドキュメントをJavaオブジェクトに変換し、それらのオブジェクトをJSONに変換します。MOXyでは、プロパティを設定してJSON出力を指定できます。 Marshallerで。

import Java.io.File;
import javax.xml.bind.*;
import org.Eclipse.persistence.jaxb.MarshallerProperties;

public class Demo {

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

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        File xml = new File("src/forum15357366/input.xml");
        Customer customer = (Customer) unmarshaller.unmarshal(xml)
                ;
        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.setProperty(MarshallerProperties.MEDIA_TYPE, "application/json");
        marshaller.setProperty(MarshallerProperties.JSON_INCLUDE_ROOT, false);
        marshaller.marshal(customer, System.out);
    }

}

JSON出力

以下はJSON出力です。名前空間またはXML属性に対応するインジケーターがないことに注意してください。また、サイズ1のコレクションがJSON配列として正しく表されていたことにも注意してください(他のアプローチの問題)。

{
   "id" : 123,
   "firstName" : "Jane",
   "lastName" : null,
   "phoneNumbers" : [ {
      "type" : "work",
      "value" : "555-1111"
   } ]
}
11
bdoughan

JsonMarshallerは、Java 1.5ライブラリで、JSONオブジェクトのマーシャリングとアンマーシャリングをJavaオブジェクト。このプロジェクトの目標は、使いやすさ、透明性、静的型安全性。例

次のJavaクラスがある場合:

Java:

@Entity
class Book {
@Value
  private String title;
@Value
  private String isbn;
@Value
  private Set<author> authors;
}

@Entity
class Author {
@Value
  private String firstName;
@Value
  private String lastName;
}

また、新しいBook()を作成し、それをマーシャリングできる情報を追加しました。

JSON:

{title:   "Java",
 isbn:    "122333",
 authors: [{firstName: "Herbert", lastName: "Shield"},
           {firstName: "Pascal",  lastName: "Perez"}]}
0
Biswajit