2

我正在使用 GWT,java.lang.NoClassDefFoundError: com/google/gwt/json/client/JSONParser当我尝试解析 JSON 时,我在运行时遇到异常。

我已经导入了以下内容: import com.google.gwt.json.client.JSONParser;

我的代码是

String r = ((Text) Entity.getProperty("result")).getValue();    
JSONValue jsonValue;
jsonValue = JSONParser.parseStrict(r);

通常我会说找不到罐子,但在这种情况下不需要外部罐子,对吧?那么这里出了什么问题,我该如何解决?

4

1 回答 1

1

要使用 JSON,您需要继承正确的模块(在您的应用程序模块中)。

<inherits name='com.google.gwt.json.JSON'/>

另外,请确保gwt-user.jar在您的类路径中有。

于 2013-05-10T13:01:43.030 回答