很多情况下,需要传递一些信息,从浏览器到Web服务器,最终到后台程序。浏览器使用两种方法可将这些信息传递到Web服务器,分别为GET方法和POST方法。
1.GET方法
GET 方法向页面请求发送已编码的用户信息。页面和已编码的信息中间用“?”字符分隔,如下所示:
http://www.test.com/hello?key1=value1&key2=value2
GET方法是默认的从浏览器向Web服务器传递信息的方法,它会产生一个很长的字符串,出现在浏览器的地址栏中。如果您要向服务器传递的是密码或其他的敏感信息,请不要使用GET方法。GET方法有大小限制:请求字符串中最多只能有1024个字符。这些信息使用QUERY_STRING头传递,并可以通过QUERY_STRING环境变量访问,Servlet使用doGet()方法处理这种类型的请求。
2.POST方法
另一个向后台程序传递信息的比较可靠的方法是POST方法。POST方法打包信息的方式与GET方法基本相同,但是POST方法不是把信息作为URL中?字符后的文本字符串进行发送,而是把这些信息作为一个单独的消息。消息以标准输出的形式传到后台程序,您可以解析和使用这些标准输出。Servlet使用doPost()方法处理这种类型的请求。
使用Servlet读取表单数据,需要根据数据的不同使用不同的方法进行解析,在Servlet API中,定义了如下方法来解析不同类型的数据:
● getParameter():可以调用request.getParameter()方法来获取表单参数的值。返回值类型为String。
● getParameterValues():如果参数出现一次以上,则调用该方法,并返回多个值,例如复选框。返回值类型为String数组。
● getParameterNames():如果想要得到当前请求中的所有参数的完整列表,则调用该方法。返回值类型为String数组。
下面的案例使用Servlet API获取GET请求中的参数:
package com.xdl.form;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class HelloForm extends HttpServlet {
private static final long serialVersionUID = 1L;
public HelloForm() {
super();
}
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
String title = "使用 GET 方法读取表单数据";
//在Tomcat7版本中需要使用下面的方式处理GET方式传递中文乱码问题
//String name =new String
//(request.getParameter("name").getBytes ("ISO-8859-1"),"UTF-8");
//在Tomcat8版本中不需要处理GET方式传递中文乱码问题,
//因为Tomcat8默认使用UTF-8作为字符集传递中文参数,
//而Tomcat7默认使用的是ISO-8859-1字符集
String name = request.getParameter("name");
String docType = "<!DOCTYPE html> \n";
out.println(docType +
"<html>\n" +
"<head><title>" + title + "</title></head>\n" +
"<body bgcolor=\"#f0f0f0\">\n" +
"<h1 align=\"center\">" + title + "</h1>\n" +
"<ul>\n" +
" <li><b>站点名</b>:"
+ name + "\n" +
" <li><b>网址</b>:"
+ request.getParameter("url") + "\n" +
"</ul>\n" +
"</body></html>");
}
public void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
doGet(request, response);
}
}
然后在web.xml文件中配置上面的Servlet:
<servlet>
<servlet-name>HelloForm</servlet-name>
<servlet-class>com.xdl.form.HelloForm</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>HelloForm</servlet-name>
<url-pattern>/HelloForm</url-pattern>
</servlet-mapping>
现在在浏览器的地址栏中输入http://localhost:8080/form-test/HelloForm?name=兄弟连java&url=java.itxdl.cn,并在触发上述命令之前确保已经启动Tomcat服务器,如果一切顺利,会得到如图2.1所示的结果:
HelloForm生成的HTML页面
下面使用HTML表单和提交按钮传递两个值,继续使用HelloForm来处理输入。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>兄弟连it教育(java.itxdl.cn)</title>
</head>
<body>
<form action="HelloForm" method="GET">
网址名:<input type="text" name="name"> <br />
网址:<input type="text" name="url" />
<input type="submit" value="提交" />
</form>
</body>
</html>
将这个HTML文件保存在WebContent下并命名为hello.html,然后重启Tomcat服务器,在浏览器中输入http://localhost:8080/ form-test /hello.html,浏览器中将显示如图所示的内容。
hello.html
在网址名中输入:变态严管 网址栏中输入:java.itxdl.cn 然后点击提交按钮,将看到如图所示的页面。
HelloForm生成的HTML页面
让我们对上面的HelloForm做小小的修改,以便它可以处理GET和POST方法。下面的 HelloForm.java Servlet程序使用GET和POST方法处理由Web浏览器给出的输入。
package com.xdl.form;
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 HelloForm extends HttpServlet {
private static final long serialVersionUID = 1L;
public HelloForm() {
super();
}
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
String title = "使用 POST 方法读取表单数据";
//在tomcat8中需要对POST提交的表单中的中文做处理,只有GET
String name =new String
(request.getParameter("name").getBytes ("ISO-8859-1"),"UTF-8");
//或者使用下面的方式进行中文乱码的处理,并且推荐使用这种方式
//request.setCharacterEncoding("UTF-8");
String docType = "<!DOCTYPE html> \n";
out.println(docType +
"<html>\n" +
"<head><title>" + title + "</title></head>\n" +
"<body bgcolor=\"#f0f0f0\">\n" +
"<h1 align=\"center\">" + title + "</h1>\n" +
"<ul>\n" +
" <li><b>站点名</b>:"
+ name + "\n" +
" <li><b>网址</b>:"
+ request.getParameter("url") + "\n" +
"</ul>\n" +
"</body></html>");
}
public void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
doGet(request, response);
}
}
现在将上面的Servlet重新部署到Tomcat服务器上并重启,然后使用带有POST方法的hello.html进行测试,hello.html代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>兄弟连it教育(java.itxdl.cn)</title>
</head>
<body>
<form action="HelloForm" method="POST">
网址名:<input type="text" name="name"> <br />
网址:<input type="text" name="url" />
<input type="submit" value="提交" />
</form>
</body>
</html>
在浏览器中输入http://localhost:8080/form-test/hello.html,然后输入网址名和网址,然后点击提交按钮,最后结果显示如图2所示。
HelloForm生成的HTML页面
现在我们需要使用复选框将数据传递到服务器端,首先我们新建一个HTML页面,checkbox.html,其中含有一个带有两个复选框的表单。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>兄弟连it教育(java.itxdl.cn)</title>
</head>
<body>
<form action="CheckBox" method="POST">
<input type="checkbox" name="itxdl" value="兄弟连IT教育" /> 兄弟连IT教育
<input type="checkbox" name="itxdl" value="Java" /> Java
<input type="checkbox" name="itxdl" value="大数据" /> 大数据
<input type="submit" value="选择站点" />
</form>
</body>
</html>
下面的代码是CheckBox.java Servlet程序,处理Web浏览器给出的复选框输入。
package com.xdl.form;
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 CheckBox extends HttpServlet {
private static final long serialVersionUID = 1L;
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
request.setCharacterEncoding("UTF-8");
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
String title = "读取复选框数据";
String[] parameterValues = request.getParameterValues("itxdl");
String docType = "<!DOCTYPE html> \n";
out.println(docType +
"<html>\n" +
"<head><title>" + title + "</title></head>\n" +
"<body bgcolor=\"#f0f0f0\">\n" +
"<h1 align=\"center\">" + title + "</h1>\n" +
"<ul>\n" +
"您选择了:\n");
for(String name : parameterValues) {
out.println(name);
}
out.println(
"</ul>\n" +
"</body></html>");
}
public void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
doGet(request, response);
}
}
设置对应的web.xml
<servlet>
<servlet-name>CheckBox</servlet-name>
<servlet-class>com.xdl.form.CheckBox</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>CheckBox</servlet-name>
<url-pattern>/CheckBox</url-pattern>
</servlet-mapping>
启动Tomcat服务器,然后再浏览器中输入http://localhost:8080/form-test/checkbox.html,将显示如图所示的页面。
checkbox.html
依次选择三个选项,然后点击"选择站点"按钮,将显示如图所示的页面。
CheckBox生成的HTML页面