-4

如何在 BlackBerry 中解析 JSON 数据?需要帮助来解析以下数据。

{
    "menu": {
        "id": "Home",
        "menuitem": [
            {
                "type": "form",
                "name": "Order",
                "url": "http://domain/oredr.aspx",
                "Row": [
                    {
                        "Index": "1",
                        "Control": [
                            {
                                "type": "LB",
                                "align": "Left",
                                "send": "No",
                                "value": "User Name"
                            },
                            {
                                "type": "TB",
                                "align": "Right",
                                "send": "Yes",
                                "param": "username",
                                "maxlength": "25",
                                "ctype": "Alpha"
                            }
                        ]
                    },
                    {
                        "Index": "2",
                        "Control": [
                            {
                                "type": "LB",
                                "align": "Left",
                                "send": "No",
                                "value": "Mobile No"
                            },
                            {
                                "type": "TB",
                                "align": "Right",
                                "send": "Yes",
                                "param": "MobileNo",
                                "maxlength": "10",
                                "ctype": "Numeric"
                            }
                        ]
                    },
                    {
                        "Index": "3",
                        "Control": [
                            {
                                "type": "LB",
                                "align": "Left",
                                "send": "No",
                                "value": "Email ID"
                            },
                            {
                                "type": "TB",
                                "align": "Right",
                                "send": "Yes",
                                "param": "email",
                                "maxlength": "50",
                                "ctype": "Email"
                            }
                        ]
                    },
                    {
                        "Index": "4",
                        "Control": [
                            {
                                "type": "None",
                                "align": "Left",
                                "send": "No"
                            },
                            {
                                "type": "BT",
                                "align": "Center",
                                "send": "No",
                                "value": "Submit",
                                "ctype": "Submit"
                            }
                        ]
                    }
                ]
            },
            {
                "type": "form",
                "value": "Stock",
                "url": "http://domain/stock.aspx",
                "Row": [
                    {
                        "Index": "1",
                        "Control": [
                            {
                                "type": "LB",
                                "align": "Left",
                                "send": "No",
                                "value": "Select Medium"
                            },
                            {
                                "type": "CB",
                                "align": "Right",
                                "send": "Yes",
                                "param": "medium",
                                "Item": [
                                    {
                                        "name": "Yes"
                                    },
                                    {
                                        "name": "No"
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "Index": "2",
                        "Control": [
                            {
                                "type": "None",
                                "align": "Left",
                                "send": "No"
                            },
                            {
                                "type": "BT",
                                "align": "Center",
                                "send": "No",
                                "value": "Submit",
                                "ctype": "Submit"
                            }
                        ]
                    }
                ]
            },
            {
                "type": "form",
                "value": "Custom",
                "url": "http://domain/custom.aspx",
                "Row": [
                    {
                        "Index": "1",
                        "Control": [
                            {
                                "type": "LB",
                                "align": "Left",
                                "send": "No",
                                "value": "Offer Type"
                            },
                            {
                                "type": "DD",
                                "align": "Right",
                                "send": "Yes",
                                "param": "offertype",
                                "Item": [
                                    {
                                        "name": "Marketing"
                                    },
                                    {
                                        "name": "Promotional"
                                    }
                                ]
                            }
                        ]
                    },
                    {
                        "Index": "2",
                        "Control": [
                            {
                                "type": "None",
                                "align": "Left",
                                "send": "No"
                            },
                            {
                                "type": "BT",
                                "align": "Center",
                                "send": "No",
                                "value": "Submit",
                                "ctype": "Submit"
                            }
                        ]
                    }
                ]
            }
        ]
    }
}
4

1 回答 1

3

首先参考这个链接 - json

试试这个 - 首先下载 json parser .jar 文件并将其导入您的项目。

JSONObject data = new JSONObject(data);
JSONObject menu = data.getJSONObject("menu");

要获取String字段的值,请使用以下代码 -

String id = menu.getString("id");
JSONObject menuitem = json.getJSONObject("menuitem");

等等。

于 2012-06-08T08:34:54.573 回答