Java GWT JSONObject put String

时间:2014-12-06 08:48:28

标签: java json string gwt jsonobject

如何创建json对象并在GWT中将我的值放入其中?

import com.google.gwt.json.client.JSONObject;
...
JSONObject myJson = new JSONObject();
myJson.put("hello", "world");

因为在put方法中我收到了这个错误: 方法put(String,JSONValue)在JSONObject类型中不适用于参数(String,String)

1 个答案:

答案 0 :(得分:0)

myJson.put("hello", new JSONString("world"));