博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Servlet小试
阅读量:6290 次
发布时间:2019-06-22

本文共 2185 字,大约阅读时间需要 7 分钟。

 

Java响应Http请求:

1、创建项目

  因为对Java环境不是很熟悉,第一步卡住了好长时间,

  javax怎么引用,

  在Java EE 5 Libraries中的javaee.jar中,项目中怎么引用Java EE 5 Libraries,可以网上查一下。

2、创建Servlet类

  这一块就是实现代码,继承HttpServlet ,实现doGet和doPost方法即可。

  示例源码如下:

package com.nankang;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 HelloServlet extends HttpServlet {    public void doGet(HttpServletRequest request, HttpServletResponse response)            throws IOException, ServletException {        String clientName = request.getParameter("clientName");        if (clientName != null) {            clientName = new String(clientName.getBytes("ISO-8859-1"), "GB2312");        } else {            clientName = "我的朋友";        }        PrintWriter out;        String title = "HelloServlet";        String heading1 = "HelloServlet的doGet方法的输出:";        response.setContentType("text/html;charset=GB2312");        out = response.getWriter();        out.print("" + title + "");        out.print("");        out.print(heading1);        out.print("

" + clientName + ":你好

"); out.print(""); out.close(); } public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { String clientName = "我的朋友"; PrintWriter out; String title = "HelloServlet"; String heading1 = "HelloServlet的doPost方法的输出:"; response.setContentType("text/html;charset=GB2312"); out = response.getWriter(); out.print("" + title + ""); out.print(""); out.print(heading1); out.print("

" + clientName + ":你好

"); out.print(""); out.close(); }}

 

3、更改web.xml

  更改配置文件,添加Servlet和Servlet-mapping两个节点。

  源码如下:

index.jsp
HelloServlet
com.nankang.HelloServlet
HelloServlet
/hello

 

今天是对Java开发环境进行的第一步尝试,加油。

参考文章:

转载地址:http://uqzta.baihongyu.com/

你可能感兴趣的文章
JavaScript 基础(九): 条件 语句
查看>>
Linux系统固定IP配置
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
项目经理笔记一
查看>>
Hibernate一对一外键双向关联
查看>>
mac pro 入手,php环境配置总结
查看>>
MyBatis-Plus | 最简单的查询操作教程(Lambda)
查看>>
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>
IOE,为什么去IOE?
查看>>
Storm中的Worker
查看>>
dangdang.ddframe.job中页面修改表达式后进行检查
查看>>
Web基础架构:负载均衡和LVS
查看>>
Linux下c/c++相对路径动态库的生成与使用
查看>>
SHELL实现跳板机,只允许用户执行少量允许的命令
查看>>
SpringBoot 整合Redis
查看>>
2014上半年大片早知道
查看>>