给定Servlet程序的代码如下所示:Public class Servletl extends HttpServlet{
Public void doGet(HttpServletRequest request,HttpServletResponse response)Throws ServletException IOException{
System.out.println("get");
}
Public void doPost(HttpServletRequest request.HttpServletResponse response)Throws ServletException,IOException{
System.out.println("post");
doGet(request,response);
}
}
用户在浏览器地址栏中键入的请求URL 并回车后,在控制台上显示的结果是()。