主頁 > 知識庫 > JSP的request對象實例詳解

JSP的request對象實例詳解

熱門標簽:南通通訊外呼系統(tǒng)產(chǎn)品介紹 外呼系統(tǒng)使用方法 電話機器人需要使用網(wǎng)絡嗎 電銷機器人免培訓 海外圖書館地圖標注點 給地圖標注得傭金 如何看懂地圖標注點 自繪地圖標注數(shù)據(jù) 潤滑油銷售電銷機器人

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內(nèi)置對象/h1>
  %
    request.setCharacterEncoding("utf-8"); //解決中文亂碼問題,無法解決URL傳遞中文出現(xiàn)的亂碼問題。
    request.setAttribute("password", "123456");
  
  %>
    用戶名:%=request.getParameter("username") %>br> 
    愛好 :%
      if(request.getParameterValues("favorite")!=null)
      {
          String[] favorites = request.getParameterValues("favorite");
          for(int i=0;ifavorites.length;i++)
          {
           out.println(favorites[i]+"nbsp;nbsp;");
          }
        }
    %> br>
     密碼:%=request.getAttribute("password") %>br>
     請求體的MIME類型:%=request.getContentType() %>br>
     協(xié)議類型及版本號: %=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傳遞中文參數(shù)亂碼問題

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

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

您可能感興趣的文章:
  • jsp 使用request為頁面添加靜態(tài)數(shù)據(jù)的實例
  • JSP中Servlet的Request與Response的用法與區(qū)別
  • JSP 中request與response的用法詳解
  • JSP request.setAttribute()詳解及實例
  • jsp Request獲取url信息的各種方法對比
  • JSP利用過濾器解決request中文亂碼問題
  • JSP用過濾器解決request getParameter中文亂碼問題
  • Jsp中request的3個基礎實踐

標簽:銅川 廣州 大連 樂山 內(nèi)江 南京 黃石 貸款邀約

巨人網(wǎng)絡通訊聲明:本文標題《JSP的request對象實例詳解》,本文關鍵詞  JSP,的,request,對象,實例,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《JSP的request對象實例詳解》相關的同類信息!
  • 本頁收集關于JSP的request對象實例詳解的相關信息資訊供網(wǎng)民參考!
  • 推薦文章