如何在jsp中配置JSON jar文件?
我在JSONObject
课程中收到错误。
在Java中:
// Assuming 'request' is HttpServletRequest
String jsonString = request.getParameter("jsonData");
JSONObject jsonObject = (JSONObject) JSONValue.parse(jsonString);
答案 0 :(得分:0)
JSONObject jo=new JSONObject(jsonString);
会做到这一点。
答案 1 :(得分:0)
@ user2866902你的classpath中有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(); %>
希望这可以帮助你..