Jsp獲取Java的重定向賦值(String)


Jsp獲取Java的重定向賦值(String)

Java代碼片段:

//傳遞String
request.setAttribute("msg", msg);
//重定向
request.getRequestDispatcher("error.jsp").forward(request, response);

Jsp代碼片段:

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<%@ page import="nc.xyzq.uuib.bean.AuthReqBean" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<base href="<%=basePath%>">
<title>404頁面</title>
<script type="text/javascript" src="<%= path %>/scripts/jquery-1.7.2.min.js"></script>      
<% 
    String msg = (String)request.getAttribute("msg");
%> 
</head>
<body>
<input id="fbi_gjzxt" type="button" name="fbi_gjzxt" value ="<%=msg %>"/>  
<center>
<img src="images/error404.png">
</center>
</body>
</html>
String msg = (String)request.getAttribute("msg");//強制轉換為String


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM