properties屬性檔案 筆記

2022-09-13 11:00:14 字數 641 閱讀 9412

將連線資料庫的一些常量放入其中,便於檢視|修改|維護。

properties裡用鍵值對的形式儲存,每一行對應乙個鍵和值,鍵=值 的形式,不加分號";"。

用來儲存資料庫的驅動類全名,url,user,password鍵通常大寫。

driver=com.mysql.jdbc.driver

url=jdbc:mysql://localhost/school?useunicode=true&characterencoding=utf-8&usessl=true

user=root

password=root

看到一些文章說properti檔案不要放在根目錄下,不然不參與打包。

呼叫屬性檔案的方法

//例項化屬性檔案 屬性檔案集合

properties pro=new properties();

inputstream in=this.getclass().getresourceasstream("jdbc.properties");//檔案的相對路徑

try catch (ioexception e)

/** pro.getproperty(key) key對應屬性檔案裡的健

*/

其他方法待補充!

Properties屬性集合

properties屬性集合概述 是乙個雙列集合,實現了map介面,繼承hashtable類。properties集合的特點 建立物件時不需要指定泛型 鍵和值都是字串 可以和流技術相加使用 可以直接通過流將集合中的資料儲存到檔案中 可以直接從檔案中讀取資料到集合 屬性檔案要求 命名要求 x.prop...

屬性集合類Properties

hashtable implements map public class properties extends hashtable object,object properties 是map的子類 有map的方法 方法 put key,value set keyset prop.put 0001 ...

讀取properties配置檔案中屬性的值的工具類

專案中常用的一些配置的維護,例如redis的ip,資料庫ip這些一點是用檔案維護起來,方便專案開發時進行除錯,為了方便以後使用,就直接封裝了乙個工具類以便使用,如下 讀取properties配置檔案中屬性的值的工具類 author zzx public class readpropertiesuti...