public class RequestAPIServlet extends HttpServlet { protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { } protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // i. getRequestURI() 获取请求的资源路径 System.out.println("URI = " + request.getRequestURI()); // ii. getRequestURL() 获取请求的统一资源定位符(绝对路径) System.out.println("URL = " + request.getRequestURL()); // iii. getRemoteHost() 获取客户端的 ip 地址 /** * 在IDEA中,使用localhost,得到的客户端的ip地址是 ====>>> 127.0.0.1 * 在IDEA中,使用127.0.0.1,得到的客户端的ip地址是 ====>>> 127.0.0.1 * 在IDEA中,使用真实的ip访问时,得到的客户端的ip地址是 ====>>> 192.168.1.133(真实的ip地址) */ System.out.println("客户端的 ip地址 => " + request.getRemoteHost()); // iv. getHeader() 获取请求头 System.out.println("请求头User-Agent ==>>>" + request.getHeader("User-Agent")); // vii. getMethod() 获取请求的方式 GET 或 POST System.out.println("请求的方式 ==>>" + request.getMethod()); } }