我正在使用 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);
通常我会说找不到罐子,但在这种情况下不需要外部罐子,对吧?那么这里出了什么问题,我该如何解决?