A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 刘文秀 中级黑马   /  2016-8-2 22:00  /  375 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

package com;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Scanner;

import com.mysql.jdbc.Driver;

public class Demo1_Attack {
        public static void main(String[] args) throws SQLException {
                DriverManager.registerDriver(new Driver());
                Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/gjp", "root", "12");
                Statement sta  = con.createStatement();
                Scanner sc = new Scanner(System.in);
                System.out.println("请您输入用户名");
                String username = sc.nextLine();
                System.out.println("请您输入密码:");
                String password = sc.nextLine();
                String sql = "Select * from admin where username = '"+username+"' and password = '"+password+"'";
                System.out.println(sql);
                ResultSet result = sta.executeQuery(sql);
                while(result.next()) {
                        String un = result.getString("username");
                        int pw = result.getInt("password");
                        System.out.println(un + "   " + pw);
                }
                result.close();
                sta.close();
                con.close();
               
               
        }
}


2 个回复

正序浏览
Frankle 发表于 2016-8-3 17:13
可以使用子类PrepareStatement

占位符,我懂
回复 使用道具 举报
可以使用子类PrepareStatement
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马