在路上

 找回密码
 立即注册
在路上 站点首页 学习 查看内容

使用Post方式提交数据到Tomcat服务器的方法

2016-7-29 15:37| 发布者: zhangjf| 查看: 579| 评论: 0

摘要: 我在上一篇文章中介绍了 使用Get方式提交数据到Tomcat服务器,这篇将介绍使用Post方式提交数据到服务器,由于Post的方式和Get方式创建Web工程是一模一样的,只用几个地方的代码不同所以,我就直接介绍不同的地方,第 ...

我在上一篇文章中介绍了 使用Get方式提交数据到Tomcat服务器,这篇将介绍使用Post方式提交数据到服务器,由于Post的方式和Get方式创建Web工程是一模一样的,只用几个地方的代码不同所以,我就直接介绍不同的地方,第一个不同点是,提交方式不同,所以修改LoginServlet.Java中的代码

  1. package com.fyt.org;
  2. import java.io.IOException;
  3. import java.io.OutputStream;
  4. import java.io.PrintWriter;
  5. import javax.servlet.ServletException;
  6. import javax.servlet.http.HttpServlet;
  7. import javax.servlet.http.HttpServletRequest;
  8. import javax.servlet.http.HttpServletResponse;
  9. public class LoginServlet extends HttpServlet {
  10. public LoginServlet() {
  11. super();
  12. }
  13. public void destroy() {
  14. super.destroy();
  15. }
  16. //使用Get方式向服务器提交数据
  17. public void doGet(HttpServletRequest request, HttpServletResponse response)
  18. throws ServletException, IOException {
  19. }
  20. //使用Post方式向服务器提交数据
  21. public void doPost(HttpServletRequest request, HttpServletResponse response)
  22. throws ServletException, IOException {
  23. //获取从浏览器中发送过来的用户名
  24. String username = request.getParameter("username");
  25. //获取从客户端发送过来的密码
  26. String password = request.getParameter("password");
  27. //使用iso8859-1编码将username转换成字节数组
  28. //再使用utf-8把字节数组转换成字符串
  29. username = new String(username.getBytes("iso8859-1"), "utf-8");
  30. //在控制台中打印用户名和密码
  31. System.out.println("username=" + username);
  32. System.out.println("password=" + password);
  33. //获得一个输出流
  34. OutputStream os = response.getOutputStream();
  35. //如果用户名和密码都输入正确
  36. if("小志".equals(username) && "123".equals(password)) {
  37. //将字符发送至浏览器中
  38. os.write("登录成功".getBytes("utf-8"));
  39. }
  40. else {
  41. //将字符串发送到浏览器中
  42. os.write("登录失败".getBytes("utf-8"));
  43. }
  44. }
  45. }
复制代码

第二个需要修改的地方是index.jsp,将index.jsp中的代码修改成下面的代码

  1. <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
  2. <%
  3. String path = request.getContextPath();
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  5. %>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  7. <html>
  8. <head>
  9. <base href="<%=basePath%>">
  10. <title>My JSP 'index.jsp' starting page</title>
  11. <meta http-equiv="pragma" content="no-cache">
  12. <meta http-equiv="cache-control" content="no-cache">
  13. <meta http-equiv="expires" content="0">
  14. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  15. <!--
  16. <link rel="stylesheet" type="text/css" href="styles.css">
  17. -->
  18. </head>
  19. <body>
  20. <form action="servlet/LoginServlet" method="post">
  21. 用户名:<input type="text" name="username"><br>
  22. 密码:<input type="password" name="password"><br>
  23. <input type="submit" value="提交">
  24. </form>
  25. </body>
  26. </html>
复制代码

修改完成后将项目部署到Tomcat服务器上,部署方式可以参考我的博客使用Get方式提交数据到Tomcat服务器
部署完成后在浏览器中输入http://192.168.1.102:8080/WebProject/index.jsp,当浏览器中显示下图所示的界面表示项目成功的部署到了浏览器上


在用户名中输入小志,在密码中输入123,当浏览器中显示登录成功时表示登录成功,因为我在服务器中设置的正确的用户名是小志,正确的密码是123


当在用户名或者密码中有一项输入错误时会显示登录失败

关于使用Post方式提交数据到Tomcat服务器的方法就给大家介绍这么多,希望对大家有所帮助!

最新评论

小黑屋|在路上 ( 蜀ICP备15035742号-1 

;

GMT+8, 2025-5-6 09:05

Copyright 2015-2025 djqfx

返回顶部