使用Get方式提交数据到Tomcat服务器的方法
这篇文章将介绍向服务器发送数据,并且服务器将数据的处理结果返回给客户端,这次先介绍使用get方式向服务器发送数据,下篇将介绍使用post方式向服务器发送数据,需要的朋友参考下吧!
实现方式分为以下几步:
第一步:使用myeclipse创建一个web project,项目命名为webproject->在src文件夹中新建一个包名为com.fyt.org的包
->在包中新建一个servlet,servlet命名为loginservlet,并在loginservlet.java中添加下面的代码
package com.fyt.org; import java.io.ioexception; import java.io.outputstream; 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 loginservlet extends httpservlet { public loginservlet() { super(); } public void destroy() { super.destroy(); } //使用get方式向服务器提交数据 public void doget(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception { //获取从浏览器中发送过来的用户名 string username = request.getparameter("username"); //获取从客户端发送过来的密码 string password = request.getparameter("password"); //使用iso8859-1编码将username转换成字节数组 //再使用utf-8把字节数组转换成字符串 username = new string(username.getbytes("iso8859-1"), "utf-8"); //在控制台中打印用户名和密码 system.out.println("username=" + username); system.out.println("password=" + password); //获得一个输出流 outputstream os = response.getoutputstream(); //如果用户名和密码都输入正确 if("小志".equals(username) && "123".equals(password)) { //将字符发送至浏览器中 os.write("登录成功".getbytes("utf-8")); } else { //将字符串发送到浏览器中 os.write("登录失败".getbytes("utf-8")); } } //使用post方式向服务器提交数据 public void dopost(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception { } }
第二步:启动tomcat服务器,tomcat服务器的启动方式可以参考我的博客在myeclipse上部署tomcat服务器
第三步:修改webproject项目中的webroot目录下的index.jsp中的代码,index.jsp中的代码如下
<%@ page language="java" import="java.util.*" pageencoding="utf-8"%> <% string path = request.getcontextpath(); string basepath = request.getscheme()+"://"+request.getservername()+":"+request.getserverport()+path+"/"; %> <!doctype html public "-//w3c//dtd html 4.01 transitional//en"> <html> <head> <base href="<%=basepath%>"> <title>my jsp 'index.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <body> <form action="servlet/loginservlet" method="get"> 用户名:<input type="text" name="username"><br> 密码:<input type="password" name="password"><br> <input type="submit" value="提交"> </form> </body> </html>
第四步:将项目部署到tomcat服务器上,部署方式如下
1、点击下图中圈出的图标
2、project中选择webproject,并且单击add按钮
3、server中选择tomcat 7.x,并且单击finish按钮
4、单击ok按钮,此时webproject项目已经成功的部署到了tomcat服务器上
第五步:打开浏览器,在浏览器中输入http://192.168.1.102:8080/webproject/index.jsp,在浏览器中显示了下图所示的界面表示成功的访问到了服务器中的数据
在用户名中输入小志,在密码中输入123,单击登录按钮后,弹出了登录成功界面后表示登录成功了,因为设置的正确的用户名是小志,正确的密码是123
当在用户名和密码中输入错误的密码后,会提示登录失败
关于使用get方式提交数据到tomcat服务器的方法,小编就给大家介绍这么多,希望对大家有所帮助!