【281天】每日項目總結系列019(2017.11.13)

叨叨兩句

  1. ~sql

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文件的讀取方式url

Properties properties = new Properties()
將文件轉換成流的兩種方式new FileInputStream(文件路徑) 對象

classLoader.getResourceAsStream("文件名")
properties.load(inStream)資源

ResourceBundle bundle = ResouceBundle.getBundle('文件名不包含後綴')
bundle.getString(name)get

相關文章
相關標籤/搜索