java通过jdbc 连接数据库(mysql)详细教程 出现时区不一致解决方法,乱码解决办法

java连接通过jdbc数据库

下面提供一种固定格式

以后连接数据库就可以用这种固定模式

public class mysql {
	public static void main(String[] args)throws SQLException {
		Connection conn=null;
		java.sql.Statement stmt=null;
		ResultSet rs=null;
		try{
			//Class.forName("com.mysql.jdbc.Driver");  //加载数据库驱动  这句话为什么注释掉,jdk1.4之后不需要加载数据库驱动。
			String url="jdbc:mysql://localhost:3306/bank?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8"; //通过DriverManagr获取数据连接 这样部分电脑可能会出错
			String username="root";    //数据库的账户
			String password="root";		//数据库的密码
			conn=DriverManager.getConnection(url,username,password);
			stmt=conn.createStatement();				//通过Connection对象获取Statement对象
			String sql="select * from account"; 		//使用Statement语句执行SQL语句  这个sql语法是查询数据库中account表中的内容
			rs=((java.sql.Statement) stmt).executeQuery(sql);
			//操作ResultSet结果集
			System.out.println("name    |  name_id");  
			while(rs.next()) {
				String name=rs.getString("name");  //获取数据库表中的内容,你存储形式什么就通过  get数据类型来获取
				String name_id=rs.getString("name_id");
				System.out.println(name+"    |  "+name_id);
			}
			
		}catch(Exception e) {
			e.printStackTrace();
		}finally {
			if(rs!=null)rs.close();
			if(stmt!=null)stmt.close();
			if(conn!=null)conn.close();
		}
		
	}
}

时区不一致错误

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.

出现这种错误只需要
String url=“jdbc:mysql://localhost:3306/bank?serverTimezone=GMT%2B8”;
加上**?serverTimezone=GMT%2B8**

输出乱码

如果读取数据库内容出现乱码需要加上**&useUnicode=true&characterEncoding=utf-8**
String url=“jdbc:mysql://localhost:3306/bank&useUnicode=true&characterEncoding=utf-8”;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

爱写bug的小邓程序员

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值