java连接mysql代码

Posted Hello_World!!!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java连接mysql代码相关的知识,希望对你有一定的参考价值。

import java.sql.Connection;
import java.sql.Driver;
import java.sql.SQLException;
import java.util.Properties;

public class Demo1 {

    public static void main(String[] args) throws SQLException {
        String url="jdbc:mysql://localhost:3306/userinfo";
        //                  jdbc协议:数据库子协议:主机:端口/连接的数据库
        String user="root";
        String password="root";
        Driver driver=new com.mysql.jdbc.Driver();//Driver接口mysql的实现类
        Properties props=new Properties();
        props.setProperty("user",user);
        props.setProperty("password",password);
        Connection conn=driver.connect(url,props);
        //如果能打印出这个对象,说明连接成功
        System.out.println(conn);
    }
}

输出结果:

 

以上是关于java连接mysql代码的主要内容,如果未能解决你的问题,请参考以下文章

从mysql的片段中加载ListView

java 连接mysql 和sql server2008代码

Java连接MySQL数据库——代码

这些角度电子邮件指令代码片段如何连接

使用 JDBC 将 Java 代码与远程 MySQL 数据库连接 [重复]

java连接mysql代码