码迷,mamicode.com
首页 > 编程语言 > 详细

javaee学习-新建servlet 直接返回html

时间:2016-07-01 20:12:23      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

 1 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 2              //1.直接返回html页面
 4                 response.setContentType("text/html");
 5                 PrintWriter out = response.getWriter();
 6                 out.print(this.getClass());
 7                 out.println("</HTML>");
 8                 out.flush();
 9                 out.close();
10 }

 

javaee学习-新建servlet 直接返回html

标签:

原文地址:http://www.cnblogs.com/xianghu/p/5634092.html

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