找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 891|回复: 0
打印 上一主题 下一主题
收起左侧

java JSP数据库核心技术实验

[复制链接]
跳转到指定楼层
楼主
实验内容:利用Statement演示SQL
实验要求:
1.    =演示用户登录功能;
2.    用户输入用户名,如tom;用户输入密码,如123,成功登录,显示success!;否则登录不成功,显示error!
3.    演示SQL,用户名输入:jack ‘ or 1=1 -- ,密码输入:345,成功登录,显示success!

【贴代码】
package com;
import java.sql.*;
import java.util.Scanner;
public class Jdbc {
    private final String URL="jdbc:mysql://localhost:3306/mon";
    private final String USER="root";
    private final String PWD="1234";
   
    public void login() {
        Connection con = null;
        Statement stmt = null;
        ResultSet rs = null;
        try {
            Class.forName("com.mysql.jdbc.Driver");
            con = DriverManager.getConnection(URL,USER,PWD);
            stmt=con.createStatement();
            
            Scanner input = new Scanner(System.in);
            System.out.println("input user:");
            String u=input.nextLine();
            System.out.println("input pwd:");
            String p=input.nextLine();
            String sql="select count(*) from login where user='"+u+"' and pwd='"+p+"'";
            rs=stmt.executeQuery(sql);
            int c=-1;
            if(rs.next()) {
                c=rs.getInt(1);               
            }
            if(c>0) {
                System.out.println("success!");
            } else {
                System.out.println("error!");
            }
        } catch(Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if(rs!=null) rs.close();
                if(stmt!=null) rs.close();
                if(con!=null) rs.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    }                        
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Jdbc b= new Jdbc();
        b.login();
    }
}

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏1 分享淘帖 顶 踩
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表