代码封装模块化,每次连接数据库直接使用工具类JdbcConUtil 调用封装的连接方法 getConnection() 就可以连接数据库。
一、JDBC连接数据库的工具类
package com.jdbc.utils;
/* 连接数据库工具getConnection()
1、注册驱动
2、连接数据库
3、关闭连接
*/
import com.mysql.jdbc.PreparedStatement;
import java.io.*;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;
public class JdbcConUtil {
private static String driver;
private static String url=null;
private static String username=null;
private static String password=null;
//这些都是以后全网站要使用的,全是静态变量或静态代码块,一但加载,全局使用
private static Properties pro=new Properties(); //准备读取配置文件,创建配置对象
static {
/*
* 绝对路径的写法:
* FileInputStream is=null;
* is=new FileInputStream(new File("D:\\Web后端开发技术\\workspace\\Jdbc\\src\\com\\jdbc\\utils\\jdbc.properties"));
* */
/*
* 动态获取配置文件jdbc.properties的路径位置
* 这里我把jdbc.properties文件放在和JdbcConUtil类同级目录下
* JdbcConUtil类调用getResourceAsStream方法的意思就是
* 以JdbcConUtil类为参考去寻找jdbc.properties文件,相对路径
* */
InputStream is=null;
is= JdbcConUtil.class.getResourceAsStream("jdbc.properties");
try {
pro.load(is); //从磁盘上加载文件,要根据你配置文件存放具体的文件夹来设置,搞晕了就用绝对路径
}
catch (IOException e) {
System.out.println(e.toString()); e.printStackTrace();
}
//看看能不能把文件中的参数读出来
driver=pro.getProperty("driverClass");
url=pro.getProperty("url");
username=pro.getProperty("username");
password=pro.getProperty("password");
// System.out.println("从mysql配置文件获取的数据"+driver+url+username+password);
try {
Class.forName(driver);//将mysql驱动注册到DriverManager中去
}
catch (ClassNotFoundException e) {
System.out.println(e.toString());e.printStackTrace();
} }
/*
* 连接方法getConnection()
* */
public static java.sql.Connection getConnection() { //注,这里不能是mysql的,是java.sql的
java.sql.Connection con1=null; //父类弄错了,是返回不了的
try {
con1=DriverManager.getConnection(url, username, password);//获得mysql的连接
System.out.println("连接数据库成功");
}
catch (SQLException e) { System.out.println(e.toString());e.printStackTrace();
}
return con1;
}
//释放资源
public static void close(ResultSet rs,Statement st,Connection conn)//查询方式时使用
{ if(rs!=null) try {rs.close();}catch (SQLException e) {
}
if(st!=null) try {st.close();}catch (SQLException e) {
}
if(conn!=null) try {conn.close();}catch (SQLException e) {
}
}
public static void close(ResultSet rs, PreparedStatement st, Connection conn)//查询方式时使用
{ if(rs!=null) try {rs.close();}catch (SQLException e) {
}
if(st!=null) try {st.close();}catch (SQLException e) {
}
if(conn!=null) try {conn.close();}catch (SQLException e) {
}
}
public static void close(Statement st,Connection conn) //非查询方式时使用
{ if(st!=null) try {st.close();}catch (SQLException e) {
}
if(conn!=null) try {conn.close();}catch (SQLException e) {
}
}
}
二、配置文件 jdbc.properties
username=root
password=123456
url=jdbc:mysql://localhost:3306/xs
driverClass=com.mysql.jdbc.Driver
三、MySQL连接器的驱动下载
https://pan.baidu.com/s/1ygZ5H9gospSXItc4xqEQag?pwd=6666
提取码:6666
四、在servlet中演示使用该工具类
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//统一编码设置为utf-8
request.setCharacterEncoding("UTF-8");
response.setContentType("text/html;Charset=UTF-8");
//获取前端传来的学号或性别
String frontdata=request.getParameter("querydata");
System.out.println("所要查询的数据"+frontdata);
String sql0="select * from student";
Connection con1=(Connection) JdbcUtil.getConnection();
ResultSet rs1=null;
Statement st1 = null;
try {
st1 = (Statement) con1.prepareStatement(sql0);
} catch (SQLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
try {
rs1=st1.executeQuery(sql0);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
//输出数据测试
try {
while(rs1.next())
//只要没读完。也可以随便定位到某一行。使用for循环也行
{ //开始输出学生数据信息
String xs = "";
String xh=rs1.getString(1);
//1===如果查询学号与该rs指向的第一个数据相同,就查询成功
if (frontdata.equals(xh)) {
for(int i=1;i<=rs1.getMetaData().getColumnCount();i++)
{//一个循环输出一个学生信息 System.out.print(rs1.getString(i)+" ");
if(i==5) {
xs=xs+rs1.getString(i)+"*";
}
else {
xs=xs+rs1.getString(i)+"|";
}
}
System.out.println("查询学号为:"+frontdata+"的学生------"+xs);
PrintWriter out1=response.getWriter();
out1.println(xs);
out1.close();
}
String xb=rs1.getString(5);
//2===如果性别等于男输出该学生
if(frontdata.equals(xb)) {
for(int i=1;i<=rs1.getMetaData().getColumnCount();i++)
{//一个循环输出一个学生信息 System.out.print(rs1.getString(i)+" ");
if(i==5) {
xs=xs+rs1.getString(i)+"*";
}
else {
xs=xs+rs1.getString(i)+"|";
}
}
System.out.println("查询性别为:"+frontdata+"的学生-----"+xs);
PrintWriter out1=response.getWriter();
out1.println(xs);
}
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
JdbcUtil.close(rs1,st1,con1);
}