久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

JSP的request對象實例詳解

瀏覽:121日期:2022-06-07 11:57:33

JSP的request對象實例詳解

一 request對象定義

客戶端的請求信息被封裝在request對象中,通過它才能了解客戶的需求,然后做出響應。它是HttpServletRequest類的實例。request對象具有請求域,即完成客戶端的請求之前,該對象一直有效。

二 request對象方法


三 實例

<%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head>  <base href="<%=basePath%>" rel="external nofollow" >    <title>My JSP "index.jsp" starting page</title>    <meta http-equiv="pragma" content="no-cache">    <meta http-equiv="cache-control" content="no-cache">    <meta http-equiv="expires" content="0">      <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">    <meta http-equiv="description" content="This is my page">    <!--    <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" >    --> </head>  <body>  <h1>request內置對象</h1>  <%    request.setCharacterEncoding("utf-8"); //解決中文亂碼問題,無法解決URL傳遞中文出現的亂碼問題。    request.setAttribute("password", "123456");    %>    用戶名:<%=request.getParameter("username") %><br>     愛好 :<%      if(request.getParameterValues("favorite")!=null)      {  String[] favorites = request.getParameterValues("favorite");  for(int i=0;i<favorites.length;i++)  {   out.println(favorites[i]+"&nbsp;&nbsp;");  }}    %> <br>     密碼:<%=request.getAttribute("password") %><br>     請求體的MIME類型:<%=request.getContentType() %><br>     協議類型及版本號: <%=request.getProtocol() %><br>     服務器主機名 :<%=request.getServerName() %><br>     服務器端口號:<%=request.getServerPort() %><BR>     請求文件的長度 :<%=request.getContentLength() %><BR>     請求客戶端的IP地址:<%=request.getRemoteAddr() %><BR>     請求的真實路徑:<%=request.getRealPath("request.jsp") %><br>     請求的上下文路徑:<%=request.getContextPath() %><BR>      </body></html>

四 運行效果

五 小知識點

1、解決URL傳遞中文參數亂碼問題

修改D:\apache-tomcat-7.0.81\conf中的server.xml  <Connector port="8888" protocol="HTTP/1.1"connectionTimeout="20000" redirectPort="8443" URIEncoding="utf-8"/>

如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

標簽: JSP
主站蜘蛛池模板: 徐闻县| 平果县| 贡嘎县| 苍南县| 朝阳市| 莱芜市| 福建省| 龙海市| 襄汾县| 大同县| 山阳县| 双牌县| 阿拉善左旗| 长宁区| 隆德县| 垦利县| 英吉沙县| 清丰县| 灵台县| 宝清县| 武鸣县| 沙雅县| 涿鹿县| 瑞安市| 长垣县| 南溪县| 阿克陶县| 德令哈市| 丰县| 明水县| 岢岚县| 西乌珠穆沁旗| 丹阳市| 乐平市| 进贤县| 融水| 米脂县| 惠水县| 隆安县| 陵川县| 普格县|