我正在尝试将JsonObject传递给jsp。但是,我认为我无法使用getAttribute方法获取JsonObject。我应该如何做到这一点。
下面是一个Servlet代码。
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Iterator;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
@WebServlet("/ShapeRendererFileManager")
public class ShapeRendererFileManager extends HttpServlet {
private static final long serialVersionUID = 1L;
HttpSession session;
//Send Json to jsp
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html;charset=euc-kr");
session = request.getSession(true);
//System.out.println(request.getParameter("tmp").toString());
JsonObject jsonObject = new JsonObject();
jsonObject.addProperty("name", "jinny");
jsonObject.addProperty("title", "web");
session.setAttribute("jsonObject", jsonObject);
response.sendRedirect("index.jsp");
}
}
下面有一个jsp代码。
<%@page import="com.google.gson.JsonObject"%>
<%@page import="com.google.gson.JsonElement"%>
<%@page import="com.google.gson.JsonArray"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>start page</title>
</head>
<%
request.setCharacterEncoding("euc-kr");
response.setContentType("text/html;charset=euc-kr");
String tmp = "";
JsonObject json = (JsonObject)session.getAttribute("jsonObject");
tmp = json.get("name").toString(); //error at this line
%>
<body>
<script>
$(function(){
document.getElementByName("formtag").action="ShapeRendererFileManager";
document.getElementById("formtag").submit();
})
</script>
<h1><%= tmp %></h1>
<form name="formtag" action="" method="post">
</form>
</body>
</html>
提前致谢。
答案 0 :(得分:1)
这里只是一个使用google Gson库的示例。您可以下载该库here或here
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
HashMap<Object, Object> obj=new HashMap<>();
obj.put("name", "Janny");
obj.put("title", "Coder");
String jsonObject=new Gson().toJson(obj);
System.out.println(jsonObject);
response.setContentType("application/json");
response.setCharacterEncoding("UTF-8");
session.setAttribute("jsonObject",jsonObject);
request.getRequestDispatcher("index.jsp").forward(request, response);
}
无论如何,您可以使用Ajax循环数据或使用JSTL!
答案 1 :(得分:0)
@The Neo Noir Develper
即使我将重定向更改为前进它也不起作用并犯同样的错误。
以下是servlet代码。
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html;charset=euc-kr");
session = request.getSession(true);
//System.out.println(request.getParameter("tmp").toString());
JsonObject jsonObject = new JsonObject();
jsonObject.addProperty("name", "jinny");
jsonObject.addProperty("title", "web");
session.setAttribute("jsonObject", jsonObject);
RequestDispatcher rd = request.getRequestDispatcher("index.jsp");
rd.forward(request, response);
}
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html;charset=euc-kr");
session = request.getSession(true);
//System.out.println(request.getParameter("tmp").toString());
JsonObject jsonObject = new JsonObject();
jsonObject.addProperty("name", "jinny");
jsonObject.addProperty("title", "web");
session.setAttribute("jsonObject", jsonObject);
RequestDispatcher rd = request.getRequestDispatcher("index.jsp");
rd.forward(request, response);
//response.sendRedirect("index.jsp");
}
下面有jsp代码。
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR" %>
<%@page import="com.google.gson.JsonObject"%>
<%@page import="com.google.gson.JsonElement"%>
<%@page import="com.google.gson.JsonArray"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>start page</title>
</head>
<%
request.setCharacterEncoding("euc-kr");
response.setContentType("text/html;charset=euc-kr");
JsonObject json = (JsonObject)session.getAttribute("jsonObject");
String tmp = json.get("name").toString(); //error at this line
%>
<body>
<!-- <div id="main_page">
</div>
<script data-main="main" src="libs/require-2.1.11.js"></script> -->
<script>
$(function(){
document.getElementByName("formtag").method="POST";
document.getElementByName("formtag").action="ShapeRendererFileManager";
document.getElementById("formtag").submit();
});
</script>
<h1><%= tmp %></h1>
<form name="formtag" action="" method="post">
</form>
</body>
</html>
答案 2 :(得分:0)
您可以尝试在servlet中使用以下代码而不是sendRedirect
RequestDispatcher rd = request.getRequestDispatcher("index.jsp");
rd.forward(request, response);
并检查jsp中的jsonObject是否为null,或者你从session属性得到null,
JsonObject json = (JsonObject)session.getAttribute("jsonObject");
完成上述更改后如果再次出现错误,请发布错误堆栈。
答案 3 :(得分:0)
您可以尝试更改回复的竞争类型
response.setContentType("application/json");
答案 4 :(得分:0)
您的代码中存在多处错误。除了使用scriptlet之外。
Anyhoo,首先,你确定你的会话被结转了吗?我这样说是因为您使用的是重定向而不是简单的RequestDispatcher转发。重定向会创建一个新请求。
我认为您应该在请求中设置此对象并使用RequestDispatcher。类似地,在JSP方面,您应该使用请求对象来获取属性。
如果没有太多关于如何创建会话的信息,很难确定会话是否得到维护。