0
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

4

2 回答 2

3

那是因为JSonTest不覆盖该toString()方法。

将以下代码添加到JSonTest类中:

@Override
public String toString() {
    return toJSONString(); 
}
于 2012-05-10T09:39:00.663 回答
0

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

于 2012-05-10T09:41:02.620 回答