码迷,mamicode.com
首页 > 其他好文 > 详细

Servlet 基础认识 使用

时间:2015-04-14 00:29:37      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

参考书《JSP Web 开发案例教程》

在jsp项目中的src文件下面创建HelloServletTest.java,代码如下,注意src的包名,我的包名是zhbit.com

package zhbit.com;

import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class HelloServletTest extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{ response.setContentType("text/html;charset=UTF-8"); PrintWriter out = response.getWriter(); out.println("<html>"); out.println("<head><title>Servlet</title></head>"); out.println("<body>"); out.println("你好,欢迎来到Servlet世界"); out.println("</body>"); out.println("</html>"); out.close(); } public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{ doGet(request, response); } }

 技术分享

修改web.xml文件,web.xml位置,web.xml修改内容,如下图

技术分享

然后打开IE,在地址栏输入:http://localhost:8080/TestJsp/HelloServletTest

技术分享

Servlet 基础认识 使用

标签:

原文地址:http://www.cnblogs.com/xuqiulin/p/4423514.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!