Java遇上MySQL
来源:程序员人生 发布时间:2015-03-02 08:13:11 阅读次数:2868次
1、简单Java Bean==>可以被序列化。需要准备的材料为:
①定义n个私有成员变量,在连接数据库中,则需要定义与我们所建的表对应的n个字段。
②实现全部成员变量的set和get方法。
③实现无参数和带全参数的构造方法。
④重写toString方法。
⑤实现接口Serializable。
2、在SQL中,1条记录像当于1个对象,所以需要new1个对象保存它。
3、在Java中连接数据库所需的步奏<由于MySQL不是系统自带的库,所以需要我们手动导包>
①导数据库包===>建文件夹===>粘贴MySQL数据库的jar包到文件夹===>右键Build Path===>configure Build Path===>Libraries===>AddJARs。
②建class文件。
③前期准备做足以后,就是我们期待已久的通过Java连接数据库了!
A:加载驱动
eg:Class.forName("org.gjt.mm.mysql.Driver"); // org.gjt.mm===>MySQL的特有写法; mysql===>刚刚我们建的文件夹的名字; Driver===>类名
B:连接数据库
eg:Connection con = null;
String url = "jdbc:mysql://localhost:3306/Lee_My"; // jdbc:mysql===>甚么类型的数据库; localhost===>所连接的数据的IP; 3306===>端口号; Lee_My===>数据库的名字
String user = "root";// 用户名
String pwd = "123";// 密码
con = DriverManager.getConnection(url, user, pwd);// 打开数据库
具体实例看以下代码:
package com.fs.test;
//import java.sql.DriverManager;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import javax.swing.JOptionPane;
import com.fs.po.Stu;
public class Test {
private Connection getCon() {// 写1个连接
数据库的方法,需要两步
Connection con = null;
// (1) 加载驱动
try {
Class.forName("org.gjt.mm.mysql.Driver");
// (2)connect连接
数据库 "jdbc:mysql://192.168.1.17:3306/Lee_My";
String url = "jdbc:mysql://localhost:3306/fs_service";
String user = "root";
String pwd = "123";
// 类 DriverManager:管理1组 JDBC 驱动程序的基本服务。
con = DriverManager.getConnection(url, user, pwd);
// getConnection(String url, String user, String password)
// 试图建立到给定
数据库 URL 的连接。DriverManager 试图从已注册的 JDBC 驱动程序集当选择1个适当的驱动程序。
} catch (Exception e) {
e.printStackTrace();
}
return con;
}
// insert
private void add() throws Exception {
/** Connection 与特定
数据库的连接(会话)。在连接上下文中履行 SQL 语句并返回结果。*/
Connection con = this.getCon();// 连接
数据库
Statement st = con.createStatement();// Statement 用于履行静态 SQL 语句并返回它所生成结果的对象。
//接口 Connection 中的 createStatement()方法的作用是:创建1个 Statement 对象来将 SQL 语句发送到
数据库。
int no = 0;
no = no + st.executeUpdate("insert into stu(name, age, xueHao)values('XiaoMing1', 23, 7)");
no = no + st.executeUpdate("insert into stu(name, age, xueHao)values('XiaoMing2', 24, 8)");
// 接口 Statement 中的 executeUpdate(String sql)方法的作用: 履行给定 SQL 语句,
// 该语句可能为 INSERT、UPDATE 或 DELETE 语句,或不返回任何内容的 SQL 语句(如 SQL DDL 语句)。
con.close();// 关闭流
JOptionPane.showMessageDialog(null, no);// 告知用户某事已产生,弹出1个对话框,对话框中显示的消息为no
}
// delete
private void delete() throws Exception {// 同 add()方法
Connection con = this.getCon();
Statement st = con.createStatement();
int no = 0;
no = no + st.executeUpdate("delete from stu where id>1");
con.close();
JOptionPane.showMessageDialog(null, no);
}
private void update() throws Exception {// 同 add()方法
Connection con = this.getCon();
Statement st = con.createStatement();
int no = 0;
no = no + st.executeUpdate("update stu set name='xiaoMing', age=30 where id>1");
con.close();
JOptionPane.showMessageDialog(null, no);
}
private List<Stu> select() throws SQLException {// 创1个集合List保存查询出来的记录
Connection con = this.getCon();// 连接
数据库
Statement st = con.createStatement();// Statement 用于履行静态 SQL 语句并返回它所生成结果的对象。
// 接口 Statement 中的executeQuery(sql) 方法履行给定的 SQL 语句,该语句返回单个 ResultSet 对象。
// 返回:包括给定查询所生成数据的 ResultSet 对象;永久不能为 null
ResultSet r = st.executeQuery("select id, name, age, xueHao from stu");
List<Stu> list = new ArrayList<Stu>();// 创建1个ArrayList对象
// 用while循环遍历出各条记录
while(r.next()) {// r.next()指向下1条记录,最开始指向的是字段,逐次往下移
int id = r.getInt(1);// 输出id列,即表中第1列
String name = r.getString(2);// 输出name列,即表中第2列
int age = r.getInt(3);// 输出age列,即表中第3列
int xueHao = r.getInt(4);// 输出xueHao列,即表中第4列
list.add(new Stu(id, name, age, xueHao));// 1条记录就是1个对象,所以把各条记录new个对象装入ArrayList集合中
}
con.close();// 关闭流
return list;// 返回list集合
}
public static void main(String[] args) throws Exception {
List<Stu> list = new Test().select();
for (Stu stu : list) {// 集合遍历
System.out.println(stu.toString());
}
}
}
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠