jsp内置对象的使用(三)

 

最后,在index.jsp的代码中,用session对象来获取用户的信息,主要用到了session.getAttribute()方法,来获取用户的信息。最终,index.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>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Insert title here</title>

<style type="text/css">

div{

   margin:0 auto;

   width:700px;

   }

   body{

   font-size:15px;

   font-color:#ffbbcc;

   font-height:160%;

   }

</style>

</head>

<body>

<div>

<% String user=(String)session.getAttribute("user");%>

<%=user %>,欢迎您!   

性别:<% String sex=(String)session.getAttribute("sex");%>

<%=sex %>   

您出生于:<% String year=(String)session.getAttribute("year");%>

<% String month=(String)session.getAttribute("month");%>

<%=year %>年<%=month %>月</div>

</body>

</html>

你可能感兴趣的:(jsp内置对象的使用(三))