public static void main(String[] args) throws Exception {
//加载驱动
Class.forName("com.mysql.jdbc.Driver");
//建立连接
Connection conn = DriverManager.getConnection("jdbc:mysql://" +
"localhost/world?user=root&password=3496fire");
Statement stat = null;
ResultSet rs=null;
//创建语句
String strsql="select MAX(stuId) from stus;";
stat=conn.createStatement();
//执行语句,得到结果
rs=stat.executeQuery(strsql);
//使结果集光标向前移动一行
rs.next();
//输出结果结果中的第一个元素
System.out.println(rs.getInt(1));
//关闭连接
rs.close();
stat.close();
conn.close();
}
我的是MySQL的例子
加载驱动的前提是你把对应的数据库的JDBC的jar文件导入到工程中或者在classpath中;
建立连接的URL不同数据库也是不一样的,这个可以自己去找找;
这里面有很地方会有异常,你可以先抛出;
这个需要使用到jdbc的api,需要使用java.sql.*这个包,在网上这一下就有了
可以使用jdbc的api,上网上搜索个例子看看就可以了吧,搜jdbc使用就行吧