It turns out that the HTTP protocol is so simple! Understand HttpServletRequest in one article

It turns out that the HTTP protocol is so simple! Understand HttpServletRequest in one article

1. Introduction to HttpServletRequest

The HttpServletRequest object represents the client's request. When the client accesses the server through the HTTP protocol, all the information in the HTTP request header is encapsulated in this object. Through the methods provided by this object, all the information requested by the client can be obtained.

[[265155]]

2. How to introduce js and css files into jsp pages

Create a new web project in eclipse, the directory structure is as follows:

At the beginning of the jsp page, get the root path of the project:

  1. <%
  2. String path = request.getContextPath();
  3. String basePath = request.getScheme() + "://"  
  4. + request.getServerName() + ":" + request.getServerPort()
  5. + path + "/" ;
  6. %>

In , insert the following code:

  1. <base href= "<%=basePath%>" />

The purpose of this code is to set the root path of the entire page to the project path.

3. Common Request Methods

1. Get client information

getRequestURL() returns the complete URL when the client makes the request. getRequestURI() returns the resource name part of the request line. getQueryString() returns the parameter part of the request line. getRemoteAddr() returns the IP address of the client making the request. getPathInfo() returns the additional path information in the request URL. The additional path information is the content in the request URL after the Servlet path and before the query parameters, which starts with "/". getRemoteHost() returns the full host name of the client making the request. getRemotePort() returns the network port number used by the client. getLocalAddr() returns the IP address of the WEB server. getLocalName() returns the host name of the WEB server.

  1. private void RequestMessages(HttpServletRequest req, HttpServletResponse resp) throws IOException{
  2. String reqUrl = req.getRequestURL().toString(); //Get the requested URL address
  3. String reqUri = req.getRequestURI(); //Get the requested resource
  4. String queryString = req.getQueryString(); //Get the parameters included in the requested URL address
  5. String remoteAddr = req.getRemoteAddr(); //Get the visitor's IP address
  6. String remoteHost = req.getRemoteHost();
  7. int remotePort = req.getRemotePort();
  8. String remoteUser = req.getRemoteUser();
  9. String method = req.getMethod(); //The method used to get the request URL address
  10. String pathInfo = req.getPathInfo();
  11. String localAddr = req.getLocalAddr(); //Get the IP address of the WEB server
  12. String localName = req.getLocalName(); //Get the host name of the WEB server
  13. resp.setCharacterEncoding( "UTF-8" ); //Set the characters to be output to the client browser in "UTF-8" encoding
  14. //Control the browser to display data in UTF-8 encoding by setting the response header. If this sentence is not added, the browser will display garbled characters
  15. resp.setHeader( "content-type" , "text/html;charset=UTF-8" );
  16. PrintWriter out = resp.getWriter();
  17. out .write( "The client information obtained is as follows: " );
  18. out .write( "<br/>" );
  19. out .write( "Requested URL: " + reqUrl);
  20. out .write( "<br/>" );
  21. out .write( "Requested resource: " + reqUri);
  22. out .write( "<br/>" );
  23. out .write( "Parameters included in the requested URL: " + queryString);
  24. out .write( "<br/>" );
  25. out .write( "Visitor's IP address: " + remoteAddr);
  26. out .write( "<br/>" );
  27. out .write( "Visitor's host name: " + remoteHost);
  28. out .write( "<br/>" );
  29. out .write( "Port number used: " + remotePort);
  30. out .write( "<br/>" );
  31. out .write( "remoteUser:" +remoteUser);
  32. out .write( "<br/>" );
  33. out .write( "Request method: " + method);
  34. out .write( "<br/>" );
  35. out .write( "pathInfo:" +pathInfo);
  36. out .write( "<br/>" );
  37. out .write( "localAddr:" +localAddr);
  38. out .write( "<br/>" );
  39. out .write( "localName:" +localName);
  40. }

2. Get the client request header

  • getHeader(string name) method:String
  • getHeaders(String name) method:Enumeration
  • getHeaderNames() Method
    1. private void RequestHead(HttpServletRequest req, HttpServletResponse resp) throws IOException{
    2. resp.setCharacterEncoding( "UTF-8" ); //Set the characters to be output to the client browser in "UTF-8" encoding
    3. //Control the browser to display data in UTF-8 encoding by setting the response header
    4. resp.setHeader( "content-type" , "text/html;charset=UTF-8" );
    5. PrintWriter out = resp.getWriter();
    6. Enumeration<String> reqHeadInfos = req.getHeaderNames(); //Get all request headers
    7. out .write( "All the request header information obtained from the client is as follows: " );
    8. out .write( "<br/>" );
    9. while (reqHeadInfos.hasMoreElements()) {
    10. String headName = (String) reqHeadInfos.nextElement();
    11. String headValue = req.getHeader(headName); //Get the value of the corresponding request header according to the name of the request header
    12. out .write(headName+ ":" +headValue);
    13. out .write( "<br/>" );
    14. }
    15. out .write( "<br/>" );
    16. out .write( "The value of the client's Accept-Encoding request header obtained: " );
    17. out .write( "<br/>" );
    18. String value = req.getHeader( "Accept-Encoding" ); //Get the value corresponding to the Accept-Encoding request header
    19. out .write(value);
    20. Enumeration<String> e = req.getHeaders( "Accept-Encoding" );
    21. while (e.hasMoreElements()) {
    22. String string = (String) e.nextElement();
    23. System. out .println(string);
    24. }
    25. }

3. Get client request parameters

getParameter(String name) Gets the request parameter according to name (commonly used) getParameterValues(String name) Gets the request parameter list according to name (commonly used) getParameterMap() returns a Map type value, which records the mapping relationship between the request parameters and request parameter values ​​in the request submitted by the front end (such as jsp page). (Commonly used when writing frameworks)

  1. <%@ page language= "java" contentType= "text/html; charset=UTF-8"  
  2. pageEncoding= "UTF-8" %>
  3. <%
  4. String path = request.getContextPath();
  5. String basePath = request.getScheme() + "://"  
  6. + request.getServerName() + ":" + request.getServerPort()
  7. + path + "/" ;
  8. %>
  9. <html>
  10. <head>
  11. <base href= "<%=basePath%>" />
  12. <meta http-equiv= "Content-Type" content= "text/html;charset=UTF-8" >
  13. <title>Form Submission</title>
  14. <link href= "css/bootstrap.css" rel= "stylesheet" >
  15. <script src= "js/jquery-3.2.1.js" ></script>
  16. <script src= "js/bootstrap.js" ></script>
  17. </head>
  18. <body>
  19. <form class= "form-horizontal"   action = "<%=request.getContextPath()%>/GetParameterRequest.html" role= "form" method= "post" >
  20. <div class= "form-group" >
  21. <label for = "firstname" class= "col-sm-1 control-label" >name</label>
  22. <div class= "col-sm-3" >
  23. <input type= "text" class= "form-control"   name = "name"  
  24. placeholder= "Please enter your name" >
  25. </div>
  26. </div>
  27. <div class= "form-group" >
  28. <label for = "lastname" class= "col-sm-1 control-label" >Age</label>
  29. <div class= "col-sm-3" >
  30. <input type= "text" class= "form-control"   name = "age"  
  31. placeholder= "Please enter your age" >
  32. </div>
  33. </div>
  34. <div class= "form-group" >
  35. <label for = "lastname" class= "col-sm-1 control-label" >Gender</label>
  36. <div class= "col-sm-3" >
  37. <input type= "radio"   name = "sex" value= "male" checked>male
  38. <input type= "radio"   name = "sex" value = "female" >female
  39. </div>
  40. </div>
  41. <div class= "form-group" >
  42. <label for = "lastname" class= "col-sm-1 control-label" >Hobby</label>
  43. <div class= "col-sm-3" >
  44. <input type= "checkbox"   name = "aihao" value = "sing" >sing
  45. <input type= "checkbox"   name = "aihao" value = "Internet access" >Internet access
  46. <input type= "checkbox"   name = "aihao" value = "game" >game
  47. <input type= "checkbox"   name = "aihao" value = "reading" > reading
  48. </div>
  49. </div>
  50. <div class= "form-group" >
  51. <div class= "col-sm-offset-1 col-sm-3" >
  52. <button type= "submit" class= "btn btn-default" >Submit</button>
  53. <button type= "reset" class= "btn btn-default" >Reset</button>
  54. </div>
  55. </div>
  56. </form>
  57. </body>
  58. </html>

Use the getParameter method and getParameterValues ​​method to receive form parameters:

  1. public class GetParameterRequest extends HttpServlet{
  2. private static final long serialVersionUID = 3903946972744326948L;
  3. @Override
  4. protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  5. this.doPost(req, resp);
  6. }
  7. @Override
  8. protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  9. //The client submits the form data in UTF-8 encoding, so the server needs to be set to receive it in UTF-8 encoding, otherwise garbled characters will be generated for Chinese data
  10. req.setCharacterEncoding( "UTF-8" );
  11. //Get the name
  12. String name = req.getParameter( "name" );
  13. //Get age
  14. String age = req.getParameter( "age" );
  15. //Get gender
  16. String sex = req.getParameter( "sex" );
  17. //Get the hobby. Because you can select multiple values, the value obtained is a string array, so you need to use the getParameterValues ​​method to obtain it.
  18. String[] aihaos = req.getParameterValues( "aihao" );
  19. String aihao = "" ;
  20. if(aihaos != null ){
  21. for ( int i = 0; i < aihaos.length; i++) {
  22. if(i == aihaos.length - 1){
  23. aihao += aihaos[i];
  24. } else {
  25. aihao += aihaos[i] + "," ;
  26. }
  27. }
  28. }
  29. System. out .println( "Name: " + name );
  30. System.out.println ( "Age:" + age);
  31. System.out.println ( "Gender:" + sex);
  32. System.out.println ( "Hobbies: " + aihao) ;
  33. req.setAttribute( "aihao" , aihao);
  34. //Set the server to output data to the client in UTF-8 encoding
  35. resp.setCharacterEncoding( "UTF-8" );
  36. this.getServletContext().getRequestDispatcher( "/request.jsp" ). forward (req, resp);
  37. }
  38. }

Response page:

  1. <%@ page language= "java" contentType= "text/html; charset=UTF-8"  
  2. pageEncoding= "UTF-8" %>
  3. <%
  4. String path = request.getContextPath();
  5. String basePath = request.getScheme() + "://"  
  6. + request.getServerName() + ":" + request.getServerPort()
  7. + path + "/" ;
  8. %>
  9. <html>
  10. <head>
  11. <base href= "<%=basePath%>" />
  12. <meta http-equiv= "Content-Type" content= "text/html;charset=UTF-8" >
  13. <title>Form Submission</title>
  14. <link href= "css/bootstrap.css" rel= "stylesheet" >
  15. <script src= "js/jquery-3.2.1.js" ></script>
  16. <script src= "js/bootstrap.js" ></script>
  17. </head>
  18. <body>
  19. < table class= "table" >
  20. <thead>
  21. <tr>
  22. <th>Name</th>
  23. <th>Results</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. <tr>
  28. <td>Name</td>
  29. <td><%=request.getParameter( "name" ) %></td>
  30. </tr>
  31. <tr>
  32. <td>Age</td>
  33. <td><%=request.getParameter( "age" ) %></td>
  34. </tr>
  35. <tr>
  36. <td>Gender</td>
  37. <td><%=request.getParameter( "sex" ) %></td>
  38. </tr>
  39. <tr>
  40. <td>Hobbies</td>
  41. <td><%=request.getAttribute( "aihao" ) %></td>
  42. </tr>
  43. </tbody>
  44. </ table >
  45. </body>
  46. </html>

Submit the form below:

Background printing:

The results are as follows:

4. Request receiving form submission Chinese parameter garbled code problem

1. The garbled Chinese parameters in the form submitted via POST

There are the following forms:

  1. <%@ page language= "java" contentType= "text/html; charset=UTF-8"  
  2. pageEncoding= "UTF-8" %>
  3. <%
  4. String path = request.getContextPath();
  5. String basePath = request.getScheme() + "://"  
  6. + request.getServerName() + ":" + request.getServerPort()
  7. + path + "/" ;
  8. %>
  9. <html>
  10. <head>
  11. <base href= "<%=basePath%>" />
  12. <meta http-equiv= "Content-Type" content= "text/html;charset=UTF-8" >
  13. <title>Form Submission</title>
  14. <link href= "css/bootstrap.css" rel= "stylesheet" >
  15. <script src= "js/jquery-3.2.1.js" ></script>
  16. <script src= "js/bootstrap.js" ></script>
  17. </head>
  18. <body>
  19. <form class= "form-horizontal"   action = "<%=request.getContextPath()%>/PostRequest.html" role= "form" method= "post" >
  20. <div class= "form-group" >
  21. <label for = "firstname" class= "col-sm-1 control-label" >name</label>
  22. <div class= "col-sm-3" >
  23. <input type= "text" class= "form-control"   name = "name"  
  24. placeholder= "Please enter your name" >
  25. </div>
  26. </div>
  27. <div class= "form-group" >
  28. <div class= "col-sm-offset-1 col-sm-3" >
  29. <button type= "submit" class= "btn btn-default" >Submit</button>
  30. <button type= "reset" class= "btn btn-default" >Reset</button>
  31. </div>
  32. </div>
  33. </form>
  34. </body>
  35. </html>

Backend receiving parameters:

  1. public class PostRequest extends HttpServlet{
  2. private static final long serialVersionUID = 3903946972744326948L;
  3. @Override
  4. protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  5. this.doPost(req, resp);
  6. }
  7. @Override
  8. protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  9. String name = req.getParameter( "name" );
  10. System. out .println( "Name: " + name );
  11. }
  12. }

Submit data:

Running results:

The reason why garbled characters are generated is that the encodings used in communication between the server and the client are inconsistent. Therefore, the solution is to set a unified encoding between the client and the server, and then transmit and receive data according to this encoding.

Since the client transmits form data to the server in UTF-8 character encoding, the server also needs to be set to receive it in UTF-8 character encoding. The encoding format is unified through the setCharacterEncoding method:

  1. public class PostRequest extends HttpServlet{
  2. private static final long serialVersionUID = 3903946972744326948L;
  3. @Override
  4. protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  5. this.doPost(req, resp);
  6. }
  7. @Override
  8. protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  9. //Set the server to receive data in UTF-8 encoding
  10. req.setCharacterEncoding( "UTF-8" );
  11. String name = req.getParameter( "name" );
  12. System. out .println( "Name: " + name );
  13. }
  14. }

Resubmit the form to solve the Chinese garbled code problem:

2. The garbled Chinese parameters when submitting the form via GET

There are the following forms:

  1. <%@ page language= "java" contentType= "text/html; charset=UTF-8"  
  2. pageEncoding= "UTF-8" %>
  3. <%
  4. String path = request.getContextPath();
  5. String basePath = request.getScheme() + "://"  
  6. + request.getServerName() + ":" + request.getServerPort()
  7. + path + "/" ;
  8. %>
  9. <html>
  10. <head>
  11. <base href= "<%=basePath%>" />
  12. <meta http-equiv= "Content-Type" content= "text/html;charset=UTF-8" >
  13. <title>Form Submission</title>
  14. <link href= "css/bootstrap.css" rel= "stylesheet" >
  15. <script src= "js/jquery-3.2.1.js" ></script>
  16. <script src= "js/bootstrap.js" ></script>
  17. </head>
  18. <body>
  19. <form class= "form-horizontal"   action = "<%=request.getContextPath()%>/GetRequest.html" role= "form" method= "get" >
  20. <div class= "form-group" >
  21. <label for = "firstname" class= "col-sm-1 control-label" >name</label>
  22. <div class= "col-sm-3" >
  23. <input type= "text" class= "form-control"   name = "name"  
  24. placeholder= "Please enter your name" >
  25. </div>
  26. </div>
  27. <div class= "form-group" >
  28. <div class= "col-sm-offset-1 col-sm-3" >
  29. <button type= "submit" class= "btn btn-default" >Submit</button>
  30. <button type= "reset" class= "btn btn-default" >Reset</button>
  31. </div>
  32. </div>
  33. </form>
  34. </body>
  35. </html>

Backend receiving parameters:

  1. public class GetRequest extends HttpServlet{
  2. private static final long serialVersionUID = 3903946972744326948L;
  3. @Override
  4. protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  5. this.doPost(req, resp);
  6. }
  7. @Override
  8. protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  9. String name = req.getParameter( "name" );
  10. System. out .println( "Name: " + name );
  11. }
  12. }

Submit data:


Running results:


The reason why garbled characters are generated is that for data transmitted in get mode, the default character encoding ISO8859-1 is used to receive data. The client transmits data to the server in UTF-8 encoding, while the request object on the server uses ISO8859-1 character encoding to receive data. The encodings used in communication between the server and the client are inconsistent, so garbled Chinese characters are generated.

Solution:

After receiving the data, first get the byte array of the original data received by the request object in ISO8859-1 character encoding, and then construct a string using the byte array in the specified encoding

  1. public class GetRequest extends HttpServlet{
  2. private static final long serialVersionUID = 3903946972744326948L;
  3. @Override
  4. protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  5. this.doPost(req, resp);
  6. }
  7. @Override
  8. protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  9. String name = req.getParameter( "name" );
  10. // Byte array of the raw data received in ISO8859-1 character encoding, and then construct a string with the specified encoding through the byte array
  11. name = new String( name .getBytes( "ISO8859-1" ) , "UTF-8" );
  12. System. out .println( "Name: " + name );
  13. }
  14. }

<<:  Why is the TCP connection a three-way handshake, not a two-way handshake or a four-way handshake?

>>:  5G is not yet mature, so why are manufacturers rushing to release 5G mobile phones?

Recommend

The impact of 5G on enterprises

By 2024, more than 40% of the world’s population ...

5G cybersecurity market to reach $16 billion by 2028

The 5G network security market is expected to gro...

Home Wi-Fi Routers and Extenders Market to Reach $18 Billion by 2030

[[420910]] Market Introduction Market research fi...

Is your phone WLAN or WiFi? What is the relationship between the two?

I wonder if you have noticed the names of wireles...

Wi-Fi HaLow and the Evolution of the Smart Home

From the early days of dial-up to the impending a...

See all the things a service mesh can do

Service mesh adoption continues to grow, and some...

The future of 5G technology: a world of infinite possibilities

The tech world is abuzz with something really exc...