0

我是 JSON 新手,所以请原谅我的无知。我需要得到一个这样的 JSON 对象:

jsonString =
{
    "Key": {"AppID":"19","Username":"sompoRoot","Password":"11223344"},
    "deviceList": ["43ab48a0eb9f950d9c2498f8c2cfa1e5b8a62687479cfad849bbc455b88e67b6",
                   "43ab48a0eb9f950d9c2498f8c2cfa1e5b8a62687479cfad849bbc455b88e67b6"],
    "aps": {"alert":"merhaba dunya","sound":"default","badge":"10",
    "dictionaryArray":["a","b"],
    "production":"false"}   
}

我将从数据库中获取 AppID、用户名和密码。deviceList 是这样的:43ab48a0eb9f950d9c2498f8c2cfa1e5b8a62687479cfad849bbc455b88e67b6, 43ab48a0eb9f950d9c2498f8c2cfa1e5b8a62687479cfad849bbc I455b88e67b6 将从文本输入中获取警报、字典和生成... 我得到并转换字符串这些参数。我从互联网上搜索,但我认为它更复杂,我怎样才能得到这样的 JSON,谢谢。

4

4 回答 4

2

您在评论中说每个字段都有一个单独的字符串。我建议class以下列方式构建一个包含所有您想要的字段(因为它aps似乎是一个单独的实体,为它创建一个单独的类):

public class MyClass {
    private String key;
    private List<String> deviceList;
    private Aps aps;
}

public class Aps {
    private String alert;
    private String sound;
    private long badge;
    private List<String> dictionaryArray;
    private boolean production;
}

有几个库可以帮助您将 Java 对象转换为 JSON,其中之一是Jackson 的 ObjectMapper 类您可以从他们的网站下载该库,或者如果您Maven在项目中使用,您可以在mvnrepository.com上找到依赖项。

使用ObjectMapper

ObjectMapper objectMapper = new ObjectMapper();
MyClass myClass = new MyClass();
// .. populate the fields
String jsonString = objectMapper.writeValueAsString(myClass);

您必须将其包围在一个try-catch块中。就是这样:jsonString现在将您的字段转换为 JSON 字符串。


编辑:您可以使用Google GSON而不是 Jackson ,其工作方式大致相同。

于 2013-09-06T11:44:23.293 回答
2
package com.stackoverflow.q1688099;

import java.util.List;
import com.google.gson.Gson;

public class Test {

    public static void main(String... args) throws Exception {
        String json = 
            "{"
                + "'title': 'Computing and Information systems',"
                + "'id' : 1,"
                + "'children' : 'true',"
                + "'groups' : [{"
                    + "'title' : 'Level one CIS',"
                    + "'id' : 2,"
                    + "'children' : 'true',"
                    + "'groups' : [{"
                        + "'title' : 'Intro To Computing and Internet',"
                        + "'id' : 3,"
                        + "'children': 'false',"
                        + "'groups':[]"
                    + "}]" 
                + "}]"
            + "}";

        // Now do the magic.
        Data data = new Gson().fromJson(json, Data.class);

        // Show it.
        System.out.println(data);
    }

}

class Data {
    private String title;
    private Long id;
    private Boolean children;
    private List<Data> groups;

    public String getTitle() { return title; }
    public Long getId() { return id; }
    public Boolean getChildren() { return children; }
    public List<Data> getGroups() { return groups; }

    public void setTitle(String title) { this.title = title; }
    public void setId(Long id) { this.id = id; }
    public void setChildren(Boolean children) { this.children = children; }
    public void setGroups(List<Data> groups) { this.groups = groups; }

    public String toString() {
        return String.format("title:%s,id:%d,children:%s,groups:%s", title, id, children, groups);
    }
}

看看这个链接

于 2013-09-06T12:18:32.587 回答
1

您可以使用 Java 的 JSON 库(GSON、Jettison 等)。之后,将数据添加到 Map 对象(嵌套结构)中,并使用库中的实用方法将其转换为 JSON。

使用 Jettison 查找示例

   JSONObject json = new JSONObject();

   JSONObject jsonKey = new JSONObject();
   jsonKey.put("AppID", 19);
   jsonKey.put("Username", "usrname");
   jsonKey.put("Password", "passwd");


   String[] deviceList = {"value1", "value2"};

   json.put("key", jsonKey);
   json.put("deviceList", deviceList);

   String finalJson = json.toString();
于 2013-09-06T11:33:51.397 回答
0

你可以试试谷歌的 gson =) 我认为它非常简单快捷-> https://code.google.com/p/google-gson/

于 2013-09-06T11:34:17.647 回答