为什么JSONObject不编码我的类?

时间:2012-05-10 09:36:08

标签: java json encoding json-simple

import org.json.simple.JSONArray;
import org.json.simple.JSONAware;
import org.json.simple.JSONObject;
import org.json.simple.JSONValue;

public class JsonTest implements JSONAware {
private final int x, y;

public JsonTest(int x, int y) {
    this.x = x;
    this.y = y;
}

@Override
public String toJSONString() {
    JSONArray arr = new JSONArray();
    arr.add(this.x);
    arr.add(this.y);
    return arr.toString();
}

public static void main(String[] args) {
    JsonTest jtest = new JsonTest(4, 5);
    String test1 = JSONValue.toJSONString(jtest);
    System.out.println(test1); //this works as expected
    JSONObject obj = new JSONObject();
    obj.put(jtest, "42");
    System.out.println(obj); //this doesn't
}
}

作为输出:

  

[4,5]

     

{ “it.integrasistemi.scegliInPianta.etc.JsonTest@3cb89838”: “42”}

而不是:

  

[4,5]

     

{[4,5]: “42”}

我缺少什么?

我的参考:http://code.google.com/p/json-simple/wiki/EncodingExamples#Example_6-1_-_Customize_JSON_outputs

2 个答案:

答案 0 :(得分:3)

那是因为JSonTest没有覆盖toString()方法。

将以下代码添加到JSonTest类:

@Override
public String toString() {
    return toJSONString(); 
}

答案 1 :(得分:0)

因为只有一个String可以用作JSON对象的键。所以你的jtest对象被转换为String。