jsp页面提交到servlet案例

jsp文件名jsp2.jsp

文本格式 复制代码 打印 ?
  1. <%@ page contentType="text/html; charset=GBK" %>  
  2. <html>  
  3. <head>  
  4. <title>  
  5. jsp2  
  6. </title>  
  7. </head>  
  8. <body bgcolor="#ffffff">  
  9. <h1>  
  10. JBuilder Generated JSP  
  11. </h1>  
  12. <form method="post" action="xianluserch">  
  13. <br/><br/>  
  14. <input type="text" value="sdfssssssssssss" >  
  15. <input type="submit" value="Submit">  
  16. <input type="reset" value="Reset">  
  17. </form>  
  18. </body>  
  19. </html>  


servlet

 

文件名 xianluserch.java

 

文本格式 复制代码 打印 ?
  1. package web;  
  2.   
  3. import javax.servlet.*;  
  4. import javax.servlet.http.*;  
  5. import java.io.*;  
  6. import java.util.*;  
  7.   
  8. public class XianLuSerch extends HttpServlet {  
  9.     private static final String CONTENT_TYPE = "text/html; charset=GBK";  
  10.   
  11.     //Initialize global variables  
  12.     public void init() throws ServletException {  
  13.     }  
  14.   
  15.     //Process the HTTP Get request  
  16.     public void doGet(HttpServletRequest request, HttpServletResponse response) throws  
  17.             ServletException, IOException {  
  18.         response.setContentType(CONTENT_TYPE);  
  19.         String ss=request.getParameter("tt");  
  20.         PrintWriter out = response.getWriter();  
  21.         out.println("<html>");  
  22.         out.println("<head><title>XianLuSerch</title></head>");  
  23.         out.println("<body bgcolor= "#ffffff ">");  
  24.         out.println("<p>The servlet has received a " + request.getMethod() +"ss"+  
  25.                     ". This is the reply.</p>");  
  26.         out.println("</body>");  
  27.         out.println("</html>");  
  28.         out.close();  
  29.         System.out.println("sddddddddddddddddddddddddddddddddddddddd");  
  30.     }  
  31.   
  32.     //Process the HTTP Post request  
  33.     public void doPost(HttpServletRequest request, HttpServletResponse response) throws  
  34.             ServletException, IOException {  
  35.         response.setContentType(CONTENT_TYPE);  
  36.         doGet(request, response);  
  37.     }  
  38.   
  39.     //Clean up resources  
  40.     public void destroy() {  
  41.     }  
  42. }  


web.xml

 

文本格式 复制代码 打印 ?
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">  
  3.   <display-name>Web</display-name>  
  4.   
  5.   
  6.   <servlet>  
  7.     <servlet-name>xianluserch</servlet-name>  
  8.     <servlet-class>web.XianLuSerch</servlet-class>  
  9.   </servlet>  
  10.   <servlet-mapping>  
  11.     <servlet-name>xianluserch</servlet-name>  
  12.     <url-pattern>/xianluserch</url-pattern>  
  13.   </servlet-mapping>  
  14.   
  15.   <servlet>  
  16.     <description>Added by JBuilder to compile JSPs with debug info</description>  
  17.     <servlet-name>debugjsp</servlet-name>  
  18.     <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>  
  19.     <init-param>  
  20.       <param-name>classdebuginfo</param-name>  
  21.       <param-value>true</param-value>  
  22.     </init-param>  
  23.     <load-on-startup>3</load-on-startup>  
  24.   </servlet>  
  25.   <servlet-mapping>  
  26.     <servlet-name>debugjsp</servlet-name>  
  27.     <url-pattern>*.jsp</url-pattern>  
  28.   </servlet-mapping>  
  29. </web-app>  

本文转载自 http://www.itjianghu.net/120108/40916450428240789.htm

你可能感兴趣的:(jsp,servlet,职场,休闲)