叨叨两句
- ~
JDBC
1.注册驱动 DriverManager.registerDriver()
2.获得连接 DriverManager.getConnection(url,user,password)
3.创建执行SQL语句的对象 connection.prepareStatement(sql) prepareStatement.setString(index,value)
4.执行SQL语句 prepareStatement.excuteQuery/excuteUpdate()
5.关闭资源 close()
使用配置文件解决硬编码的问题
properties文件的读取方式
Properties properties = new Properties()
将文件转换成流的两种方式new FileInputStream(文件路径) classLoader.getResourceAsStream("文件名")
properties.load(inStream)
ResourceBundle bundle = ResouceBundle.getBundle('文件名不包含后缀')
bundle.getString(name)
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。