你根据这个改一下就可以了。
别忘了在你的项目中加入mysql驱动包。
希望对你有帮助
Connection conn=null;
Statement stm=null;
ResultSet rs=null;
try {
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
String url ="jdbc:mysql://localhost/myDB?user=root&password=aaaaaa&useUnicode=true&characterEncoding=8859_1";
//user是用户名,password是密码 myDB为数据库名
conn= DriverManager.getConnection(url);
stm=conn.createStatement();
这里写你的SQL
} catch (Exception e) {
// TODO Auto-generated catch block
} finally{
try {
stm.close();
conn.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
温馨提示:内容为网友见解,仅供参考