配置檔案 properties
事例:需求:使用properties實現本軟體只能 執行三次,超過了三次之後就提示購買正版,退jvm.
public static void main(string args) throws ioexception
//建立properties物件。
properties properties = new properties();
//把配置檔案的資訊載入到properties中
properties.load(new fileinputstream(file));
fileoutputstream fileoutputstream = new fileoutputstream(file);
int count = 0; //定義該變數是用於儲存軟體的執行次數的。
//讀取配置檔案的執行次數
string value = properties.getproperty("count");
if(value!=null)
//判斷使用的次數是否已經達到了三次,
if(count==3)
count++;
system.out.println("你已經使用了本軟體第"+count+"次");
properties.setproperty("count",count+"");
//使用properties生成乙個配置檔案
properties.store(fileoutputstream,"runtime"); }
Properties配置檔案
在應用jdbc連線mysql陣列庫過程中,有以下幾步準備工作 一 匯入mysql驅動包 1 選擇路徑 二 配置檔案位置 命名 格式 不同於myeclipse,它比較智慧型 1 在src目錄下 2 命名一般是 dbconfig.properties 3 鍵值對形式儲存,值不需要 修飾 三 這基本就是初...
properties配置檔案
開發中獲得連線的四個引數 驅動,url,使用者名稱,密碼 通常都存在配置檔案中,方便後期維護,程式如果需要更換資料庫,只需要修改配置檔案即可。通常情況下,我們習慣使用properties檔案,此檔案要求 檔案位置 任意,建議src下 非web應用 classpath web應用 檔名 任意,擴充套件...
java配置檔案 properties
用法 1 getproperty string key 用指定的鍵在此屬性列表中搜尋屬性。也就是通過引數 key 得到 key 所對應的 value。2 load inputstream instream 從輸入流中讀取屬性列表 鍵和元素對 通過對指定的檔案 比如說上面的 test.properti...