IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> 用户登录界面 -> 正文阅读

[移动开发]用户登录界面

Java代码部分

生成验证码

import javax.imageio.ImageIO;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Random;
@WebServlet("/login")
public class CheckCode extends HttpServlet {
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        int width=100;
        int height=50;
        //创建对象,在内存中设置图片(验证码图片对象)
        BufferedImage image=new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
        //美化图片
        //填充背景色
        Graphics g= image.getGraphics();//画笔对象
        g.setColor(Color.PINK);
        g.fillRect(0,0,width,height);
        //画边框
        g.setColor(Color.black);
        g.drawRect(0,0,width-1,height-1);
        String str="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
        //生成随机角标
        Random ran=new Random();
        StringBuilder sb=new StringBuilder();
        for (int i = 1; i <= 4; i++) {
            int index=ran.nextInt(str.length());
            //获取字符
            char c=str.charAt(index);//随机字符
            sb.append(c);
            g.drawString(c+"",width/5*i,height/2);
        }
        String checkCode_session=sb.toString();
        //将验证码存入session
        req.getSession().setAttribute("checkCode_session",checkCode_session);
        //画干扰线
        g.setColor(Color.GREEN);
        //随机生成坐标
        for (int i = 0; i < 10; i++) {
            int x1= ran.nextInt(width);
            int x2= ran.nextInt(width);
            int y1= ran.nextInt(height);
            int y2= ran.nextInt(height);
            g.drawLine(x1,y1,x2,y2);
        }
        //将图片输出到页面展示
        System.out.println(image+"123");
        ImageIO.write(image,"jpg",resp.getOutputStream());
    }

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        this.doPost(req, resp);
    }
}

判断用户信息

先获取用户信息,然后判断验证码,用户名密码是否正确.(局限,未实现从数据库中获取信息,仅一位用户信息能实现登录)

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.io.IOException;

@WebServlet("/login2")
public class Login extends HttpServlet {
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //设置request编码
        req.setCharacterEncoding("utf-8");
        //获取参数
        String username = req.getParameter("username");
        String password = req.getParameter("password");
        String checkCode = req.getParameter("checkCode");
        HttpSession session = req.getSession();
        String checkCode_session = (String) session.getAttribute("checkCode_session");
        //先判断验证码是否正确
        if (checkCode.equalsIgnoreCase(checkCode_session)) {
            //忽略大小写,比较字符串
            if ("张三".equals(username) && "123".equals(password)) {//需要调用userDao查询数据库
                //登录成功,存储信息,用户信息
//                System.out.println(password);
                session.setAttribute("user","张三");
                //重定向到success.jsp
                resp.sendRedirect(req.getContextPath()+"/success.jsp");
            } else {
                //登陆失败,储存信息到request
                req.setAttribute("login_error", "用户名或密码错误!");
                //转发到登录页面
                req.getRequestDispatcher("/login.jsp").forward(req,resp);
            }
        } else {
            //验证码错误,存储信息到request
            req.setAttribute("error", "验证码错误!");
            //转发到登录页面
            req.getRequestDispatcher("/login.jsp").forward(req, resp);
        }
    }
}

jsp部分

页面样式

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>login</title>
    <style>
        div {
            color: red;
        }
    </style>
    <script>
        window.onload=function () {
            document.getElementById("img").onclick=function (){
                this.src="/untitled1_war_exploded/login?time"+new Date().getTime();
            }
        }
    </script>
</head>
<body>
<form action="/untitled1_war_exploded/login2" method="post">
<table>
    <tr>
        <th>用户名</th>
        <td><input type="text" name="username"></td>
    </tr>
    <tr>
        <th>密码</th>
        <td><input type="password" name="password"></td>
    </tr>
    <tr>
        <th>验证码</th>
        <td><input type="text" name="checkCode"></td>
    </tr>
    <tr>
        <td colspan="2"><img id="img" src="/untitled1_war_exploded/login"></td>
    </tr>
    <tr>
        <td colspan="2"><input type="submit" value="登录"></td>
    </tr>
</table>
</form>
${requestScope.error}
${requestScope.login_error}
<%--<div><%=request.getAttribute("error")==null?"":request.getAttribute("error")%></div>--%>
<%--<div><%=request.getAttribute("login_error")==null?"":request.getAttribute("login_error")%></div>--%>
</body>
</html>

登录成功后页面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<h1><%=request.getSession().getAttribute("user")%>,欢迎您!</h1>
</body>
</html>

效果

在这里插入图片描述
在这里插入图片描述
该部分从B站上学习

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-03-21 21:02:21  更:2022-03-21 21:04:31 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 18:58:09-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码