jsp四大对象

Posted 吃饭睡觉打逗逗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp四大对象相关的知识,希望对你有一定的参考价值。

发送参数:

<a href="deal.jsp?id=1&user=用户&pwd=">处理页</a>

接收参数:

<%
String id = request.getParameter("id");
String user = request.getParameter("user");
String pwd = request.getParameter("pwd");
String notExist = request.getParameter("notExist");
%>

结果:

id参数为:1
user参数为:用户
pwd参数为:
notExist参数为:null

 

getAttribute.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<%
    String result = request.getAttribute("result").toString();
%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>getAttribute</title>
</head>
<body>
单价为: <%=result %>
</body>
</html>
View Code

<a href="getAttribute.jsp">getAttribute</a>:报错

<jsp:forward page="getAttribute.jsp"></jsp:forward>:成功

以上是关于jsp四大对象的主要内容,如果未能解决你的问题,请参考以下文章

Jsp的四大作用域与九大对象

jsp九大内置对象和四大作用域

Java Web JSP详解(四大作用域九大内置对象等)

JSP九大内置对象和四大作用域

JSP九大内置对象及其作用+四大域对象

5,jsp四大域对象(了解)