如何在jsp中配置JSON jar文件?
我在JSONObject
课堂上遇到错误。
在 Java 中:
// Assuming 'request' is HttpServletRequest
String jsonString = request.getParameter("jsonData");
JSONObject jsonObject = (JSONObject) JSONValue.parse(jsonString);
@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(); %>
希望这可以帮助你..
JSONObject jo=new JSONObject(jsonString);
会成功的。