天天看點

Properties類加載屬性檔案

Properties類加載屬性檔案加載是開發中常用的一種方法。可以達到低耦合、高内聚的作用

注:properties屬性檔案必須方法src目錄下,否則load()加載器無法找到properties屬性檔案。

方法如下:

         Properties props = new Properties();

         props.load(new FileInputStream(propertiesname));

         driver = props.getProperty("properties檔案中的driver鍵名")

 url = props.getProperty("properties檔案中的url鍵名")

 user = props.getProperty("properties檔案中的user鍵名")

 pass = props.getProperty("properties檔案中的pass鍵名")