准备工作
导入 jar 包
- 下载 mysql-connector-java 包(吃过亏的表示推荐 5.x.x 版本,8.x.x 版本会出现挺多问题的):mysql-connector-java 下载地址
- 打开 AS,将 jar 包复制到 libs 文件夹下, 复制完后右键 jar 包,点击 “add as library”,将 jar 包导入相应 module
- 如果导入的 mysql-connector-java 版本为 8.x.x,则需要在 app\build.gradle 中添加:
1
2
3
4
5
6
7
8android {
// ...
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
}
添加网络权限
在 AndroidManifest.xml 中添加:1
<uses-permission android:name="android.permission.INTERNET"/>
在本地主机的 mysql 中创建要连接的数据库
使用命令行创建数据库
1
create database <数据库名>;
使用 navicat 等可视化工具直接创建数据库
连接 MySql
直接上工具类:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47/**
* @author Feng Zhaohao
* Created on 2019/11/24
*/
public class DbOpenHelper {
private static String driver = "com.mysql.jdbc.Driver";// mysql 驱动
private static String ip = "xxx.xxx.xxx.xxx"; // 安装了 mysql 的电脑的 ip 地址
private static String dbName = "TestDB"; // 要连接的数据库
private static String url = "jdbc:mysql://" + ip + ":3306/" + dbName
+ "?useUnicode=true&characterEncoding=utf8"; // mysql 数据库连接 url
private static String user = "root"; // 用户名
private static String password = "xxxxxx"; // 密码
private static Connection sConnection;
/**
* 连接数据库
*/
public static Connection getConnection() {
if (sConnection == null) {
try {
Class.forName(driver); // 获取 mysql 驱动
sConnection = DriverManager.getConnection(url, user, password); // 获取连接
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
}
return sConnection;
}
/**
* 关闭数据库
*/
public static void closeConnection() {
if (sConnection != null) {
try {
sConnection.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
通过 getConnection()
获得连接,不需要连接时记得使用 closeConnection()
关闭。
注意:
- url 连接中的 ip 地址是指本地主机(安装了 mysql 的电脑)的 ip 地址,不是 localhost(localhost 是你手机的 ip 地址,你手机不可能装 mysql 吧)
- url 连接中的数据库名不要写错,必须是本地主机的 mysql 中已经创建好的数据库
- 需要在子线程中进行连接 MySQL 操作
连接后进行增删改查
准备工作:在 TestDB 数据库中创建了一个 person 表,该表有 3 个 column: id
(int 类型,主键,自增长)、name
(text 类型,表示姓名)、age
(int 类型,表示年龄)。
注意:连接 MySQL 和对 MySQL 数据库进行增删改查操作都需要放在子线程中进行,不然会抛出异常。
插入数据
1 | /** |
更新数据
1 | /** |
删除数据
1 | /** |
查询数据
1 | /** |
出现的问题
下面是对在连接 MySQL 过程中出现问题的记录,其中问题 2、问题 4、问题 5 是导入 mysql-connector-java-8.x.x
出现的问题;问题 6 是导入 mysql-connector-java-5.x.x
出现的问题。
java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
1
解决:在项目中导入 mysql-connector-java 包
Loading class com.mysql.jdbc.Driver. This is deprecated. The new driver class is com.mysql.cj.jdbc.Driver.
1
解决:将 mysql 驱动由 "com.mysql.jdbc.Driver" 换成 "com.mysql.cj.jdbc.Driver"
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
1
2
3原因:连接的数据库(在连接 url 中指定的数据库)未创建(很多博客都没有说这点,结果一开始我傻傻地以为随便输入一个数据库名就行)
解决:连接前先在本地创建好需要连接的数据库java.sql.SQLException: The server time zone value ‘Öйú±ê׼ʱ¼ä’ is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
1
解决:在连接 url 中添加 serverTimezone,例如 "jdbc:mysql://ip:3306/dbName?serverTimezone=GMT%2B8"
java.lang.ClassNotFoundException: Didn’t find class “java.sql.SQLType” on path: DexPathList…
1
2
3
4
5原因:推测和 jdk1.8 版本有关,但是在 IDEA 上用 Java 连接 MySql 又正常,有点迷
解决:放弃 mysql-connector-java-8.x.x,重新导了个更低版本的 mysql-connector-java-5.x.x(又回到最初的起点...)。
注意,导了 5.x.x 版本后问题 2、问题 4 就不存在了。Unknown initial character set index ‘255’ received from server. Initial client character
1
解决: 在连接 url 指定字符集,例如 "jdbc:mysql://ip:3306/dbName?useUnicode=true&characterEncoding=utf8"