0

如何在jsp中配置JSON jar文件?

我在JSONObject课堂上遇到错误。

在 Java 中:

// Assuming 'request' is HttpServletRequest

String jsonString = request.getParameter("jsonData");
JSONObject jsonObject = (JSONObject) JSONValue.parse(jsonString);
4

2 回答 2

0

@user2866902 你的类路径中有 jar 文件吗?在这里,我出于我的目的使用了 json_simple-1.1.jar。你需要在jsp中导入jar文件,比如

<%@page import="org.json.simple.JSONObject"%>

然后你可以像这样得到json对象,

<% net.sf.json.JSONObject responcedata = new net.sf.json.JSONObject(); %>

希望这可以帮助你..

于 2013-10-10T18:36:23.907 回答
0
 JSONObject jo=new JSONObject(jsonString); 

会成功的。

于 2013-10-10T12:25:04.330 回答