码迷,mamicode.com
首页 > 编程语言 > 详细

Jsp获取Java的重定向赋值(String)

时间:2017-12-13 17:22:12      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:nal   赋值   pre   style   重定向   oct   imp   blog   页面   

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

Jsp获取Java的重定向赋值(String)

标签:nal   赋值   pre   style   重定向   oct   imp   blog   页面   

原文地址:http://www.cnblogs.com/lizm166/p/8032829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!