1 @WebServlet("/RequestDemo5") 2 public class RequestDemo5 extends HttpServlet { 3 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { 4 //獲取請求消息體--請求參數 5 6 //1.獲取字符流 7 BufferedReader br = request.getReader(); 8 //2.讀取數據 9 String line = null; 10 while((line = br.readLine()) != null){ 11 System.out.println(line); 12 } 13 } 14 15 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { 16 17 } 18 }