0

我正在尝试使用 Java 从 XPages“XAgent”创建一些 Json。我正在尝试一种特殊的格式,它使用整数作为键,我不断收到一些我不理解的错误。

下面是一个示例错误: 引起:java.lang.ClassCastException: java.lang.Integer 与 com.ibm.commons.util.io.json.JsonGenerator$Generator.outObject(JsonGenerator.java:202) 的 java.lang.String 不兼容) 在 com.ibm.commons.util.io.json.JsonGenerator$Generator.outLiteral(JsonGenerator.java:163) 在 com.ibm.commons.util.io.json.JsonGenerator$Generator.outLiteral(JsonGenerator.java:142 ) 在 com.ibm.commons.util.io.json.JsonGenerator$Generator.toJson(JsonGenerator.java:138) 在 com.ibm.commons.util.io.json.JsonGenerator.toJson(JsonGenerator.java:64) 在com.ibm.commons.util.io.json.JsonGenerator.toJson(JsonGenerator.java:49)

我正在尝试像这样创建 JSON 输出:

[
  {
     // minimum 
     0:{src:'item_one_format_one.ext', type: 'video/...'}     
  },
  {
     // one content, multiple formats
     0:{src:'item_two_format_one.ext', type: 'video/...'},
     1:{src:'item_two_format_two.ext', type: 'video/...'}
  },
  {
     // one content, multiple formats, item specific config
     0:{src:'item_three_format_one.ext', type: 'video/...'},
     1:{src:'item_three_format_two.ext', type: 'video/...'},
     3:{src:'item_three_format_three.ext', type: 'video/...'},
     4:{src:'item_three_format_four.ext', type: 'video/...'},          
     config: {
        option1: value1,
        option2: value2
     }

]      

不是多个“对象”,最后一个似乎是键值的整数和字符串的组合。

这是我尝试过的一些代码,并且可以正常工作:

public String testList() throws JsonException, IOException {

        Integer count = 0;

        Map<String, Object> containerMap = new TreeMap<String, Object>();
        System.out.println("A");


        TreeMap<String, String> stringMap = new TreeMap<String, String>();
        System.out.println("B");
        stringMap.put("One", "Value1");
        stringMap.put("Two", "Value2");
        System.out.println("C");

        containerMap.put("1", "One");
        count++;
        containerMap.put("2", "Two");
        count++;
        containerMap.put("3", "Three");

        System.out.println("D");

        String json = JsonGenerator.toJson(new JsonJavaFactory(), containerMap);
        System.out.println("E");
        return json;

    }

此代码产生:

{
    "1": "Zero",
    "2": "One",
    "3": "Two"
}

请注意键值的引号。我认为这将是一个问题。我能够获得整数作为密钥。而且我不确定如何将整数与字符串混合,如第三个对象示例中所示。

任何意见,将不胜感激。谢谢!

4

2 回答 2

4

不能以这种方式使用整数:{0: {...}} 属性应该是字符串:{"0": {...}}

也许您需要一个数组:

{ // one content, multiple formats, item specific config videoList: [ {src:'item_three_format_one.ext', type: 'video/...'}, {src:'item_three_format_two.ext', type: 'video/...'}, {src:'item_three_format_three.ext', type: 'video/...'}, {src:'item_three_format_four.ext', type: 'video/...'} ], vidoConfig: { option1: value1, option2: value2 } }

问候, Txemanu

于 2014-06-01T07:33:49.497 回答
1

Use Gson. Saves you ton of headaches. Must be in a plug-in for security to work. Make a result class with collections and maps and whatever. Then have 2 lines:

   Gson g = new Gson();
   g.toJson(this);

There is a builder and a few annotations for options like pretty print or naming elements different from the variable names.

Pecked on glass at high altitude. Will contain typos.

于 2014-06-01T00:46:16.930 回答