2

我是 Java 中 JSON 操作的新手,我有一个 JSON 数组形式的字符串,我需要访问多个层并将其放入类属性中。例如,这是我的 JSON 对象:

{"JsonObject" : [{"attributeOne":"valueOne",
                  "attributeTwo":"valueTwo",
                  "attributeThree":[{"subAttributeOne":"subValueOne",
                                     "subAttributeTwo":"subValueTwo"}],
                  "attributeFour":[{"subAttributeOne":"subValueThree",
                                    "subAttributeTwo":"subValueFour"}],
                  "attributeFive":"valueThree"},
                 {"attributeOne":"valueFour",
                  "attributeTwo":"valueFive",
                  "attributeThree":[{"subAttributeOne":"subValueFive",
                                     "subAttributeTwo":"subValueSix"}],
                  "attributeFour":[{"subAttributeOne":"subValueSeven",
                                    "subAttributeTwo":"subValueEight"}],
                  "attributeFive":"valueSix"}]}

假设我有一个名为 MyClass 的类,它具有这些属性,我将如何解析这个字符串,知道这是一个包含 n 个对象的数组,每个对象都包含“attributeOne、attributeTwo、...、attributeFive”?

这是我到目前为止所拥有的:

public MyClass[] jsonToJava (String jsonObj)
{
    ArrayList<MyClass> myClassArray = new ArrayList<MyClass>();


    //Somehow create a JSONArray from my jsonObj String
    JSONArray jsonArr = new JSONArray(jsonObj); //Don't know if this would be correct

    for(int i=0; i<jsonArr.length; i++){
        MyClass myClassObject = new MyClass();
        myClassObject.setAttributeOne = jsonArr[i].getString("attributeOne");
        // How can I access the subAttributeOne and Two under attributeThree and Four?
        // add all other values to myClassObject
        myClassArray.add(myClassObject);
    }
    return myClassArray;
}

正如您可能知道的那样,我对编程相当陌生:P 在此先感谢您的帮助!

4

3 回答 3

2

试试杰克逊 JSON:

ObjectMapper mapper = new ObjectMapper(); // can reuse, share globally
User user = mapper.readValue(jsonObj, User.class); //method overloaded to take String

从以下位置抓住了这两个班轮:

http://wiki.fasterxml.com/JacksonInFiveMinutes

http://jackson.codehaus.org/0.9.9/javadoc/org/codehaus/jackson/map/ObjectMapper.html

应该将您的 JSON 强转换为对象。在 Java EE 上下文中,您可以使用适当的注释在端点处获得此解组功能。

于 2012-11-07T21:32:22.317 回答
1

你试图这样做的方式是痛苦的和参与的。

我建议您使用像 GSON 这样的库并让它完成繁重的工作。 http://code.google.com/p/google-gson/

该文档有对象示例:https ://sites.google.com/site/gson/gson-user-guide#TOC-Object-Examples

于 2012-11-07T21:23:00.660 回答
1

对于您的示例,您可以使用递归,例如:

    public Object getChild(Object parent, int index) { 

    if (parent instanceof JSONArray) {          

        try {
            Object o =  ( (JSONArray)parent ).get(index);

            if( o instanceof JSONObject ){
                parent =  ((JSONObject) ( o ) ).getMap();                   
                return parent;
            }

            if( o instanceof Double ){
                parent =  (Double) o;                   
                return parent;
            }

            if( o instanceof Integer ){
                parent =  (Integer) o;                  
                return parent;
            }
                            ....


        } catch (JSONException e1) {
            e1.printStackTrace();
        }       
    }



    if (parent instanceof JSONObject) {             
        parent = ( (JSONObject)parent ).getMap();
    }

    if (parent instanceof Map<?, ?>) { 
        Map<?, ?> map = (Map<?, ?>) parent; 
        Iterator<?> it = map.keySet().iterator(); 
        for (int i=0; i<index; i++){
            it.next(); 
        }

        return map.get(it.next()); 
    }
    else if (parent instanceof Collection<?>) { 
        Iterator<?> it = ((Collection<?>) parent).iterator(); 

        for (int i=0; i<index; i++){
            it.next();              
        }
        return it.next(); 
    } 
    //throw new IndexOutOfBoundsException("'" + parent + "'cannot have children!"); 
    return null;
} 

但它有点复杂(+不好的做法instanceof),你不想重新发明轮子。所以使用 GSON 或杰克逊。

 Gson gson =  new Gson();
 String myClassStr = gson.toGson(MyClassInstance);
 ....
  Myclass yourClass = gson.fromJson(myClassStr, Myclass.class);
于 2012-11-07T21:31:02.247 回答