java服务器servlet_javaWeb之使用servlet搭建服务器入门

servlet:

百度百科说法:

Servlet(Server Applet)是Java Servlet的简称,称为小服务程序或服务连接器,用Java编写的服务器端程序,主要功能在于交互式地浏览和修改数据,生成动态Web内容。

通俗讲法:

是运行在服务器端的一小段Java程序,接受和响应从客户端发送的请求

作用:

处理客户端请求,并且对请求做出响应

编写一个serclet步骤

1、编写一个类

继承自HttpServlet

重写doGet和doPost方法

2、编写配置文件(web.xml)

先注册后绑定

3、访问

http://localhost/项目名/路径

注意:

接收参数: 格式:value=key

String  value = request.getParameter("key");

中,String value = request.getParameter("username");

回写参数:

response.getWriter().print("success");

处理响应中的乱码问题:

resp.setContentType("text/html;charset=utf-8");一般放在第一行

以下是原码:

public class RequestServlet extendsHttpServlet {

@Overrideprotected voiddoGet(HttpServletRequest req, HttpServletResponse resp)throwsServletException, IOException {

resp.setContentType("text/html;charset=utf-8");

//接收参数

String value = req.getParameter("username");

System.out.println(value);//向浏览器回写数据

resp.getWriter().print("data:"+value);resp.getWriter().print("你好");

}

}

web.xml配置

HelloServlet

cn.itcast.a_hello.HelloServlet

RequestServlet

cn.itcast.b_request.RequestServlet

HelloServlet

/hello

RequestServlet

/request

你可能感兴趣的:(java服务器servlet)