3

JSON 応答があり、対応する JSON 文字列を特定の応答クラスにマップする必要があります。同じことを行うツールまたはフレームワークはありますか。

応答クラスは次のとおりです。

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name = "0")
@XmlAccessorType(XmlAccessType.FIELD)
public class Student {

     @XmlElement(name="0")
     private String firstName;
     @XmlElement(name="1")
     private String lastName;

     public String getFirstName() {
         return firstName;
     }
     public void setFirstName(String firstName) {
         this.firstName = firstName;
     }
     public String getLastName() {
         return lastName;
     }
     public void setLastName(String lastName) {
         this.lastName = lastName;
     }
}

Json 応答文字列は {"0":{"0":"Rockey","1":"John"}} です

JSONプロバイダーはJAXBも使用してデータを低帯域幅クライアントに配線するため、JettisonでApache CXFフレームワークを使用しています。

数値表現を対応するフィールドに変換したいことに注意してください。

4

3 に答える 3

2

Google-GSON ライブラリを参照できます - https://github.com/google/gson

以前のstackoverflowの回答も参照できます - Java MEでJSON文字列をオブジェクトに変換しますか?

于 2012-10-30T07:38:30.353 に答える
1

ジェティソンはこれを行うことができました。JAXB を使用して JSON をオブジェクトにアンマーシャリングするサンプル コードを見つけまし

JAXBContext jc = JAXBContext.newInstance(Customer.class);

JSONObject obj = new JSONObject("{\"customer\":{\"id\":123,\"first-name\":\"Jane\",\"last-name\":\"Doe\",\"address\":{\"street\":\"123 A Street\"},\"phone-number\":[{\"@type\":\"work\",\"$\":\"555-1111\"},{\"@type\":\"cell\",\"$\":\"555-2222\"}]}}");
Configuration config = new Configuration();
MappedNamespaceConvention con = new MappedNamespaceConvention(config);
XMLStreamReader xmlStreamReader = new MappedXMLStreamReader(obj, con);

Unmarshaller unmarshaller = jc.createUnmarshaller();
Customer customer = (Customer) unmarshaller.unmarshal(xmlStreamReader);
于 2012-10-30T07:42:31.923 に答える
0

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

Student以下は、EclipseLink JAXB(MOXy)で注釈が付けられたクラスでユースケースをサポートする方法です。

デモ

import java.io.StringReader;
import java.util.*;
import javax.xml.bind.*;

public class Demo {

    public static void main(String[] args) throws Exception {
        Map<String, Object> properties = new HashMap<String, Object>(1);
        properties.put("eclipselink.media-type", "application/json");
        JAXBContext jc = JAXBContext.newInstance(new Class[] {Student.class}, properties);

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        StringReader json = new StringReader("{\"0\":{\"0\":\"Rockey\",\"1\":\"John\"}}");
        Student student = (Student) unmarshaller.unmarshal(json);

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

}

出力

{
   "0" : {
      "0" : "Rockey",
      "1" : "John"
   }
}

jaxb.properties

MOXyをJAXBプロバイダーとして使用するには、jaxb.propertiesドメインモデルと同じパッケージで呼び出されるファイルを次のエントリに含める必要があります。

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

MOXyとJAX-RS

JAX-RSアプリケーションの場合、MOXyJsonProviderクラスを活用してJSONバインディングを有効にすることができます(http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.htmlを参照)。

于 2012-10-30T10:12:23.250 に答える