git clone xxxx (下載)
git pull (下載更新)
git push (上傳檔案)
git commit --all (本機提交)
-填寫完此次更新後,請輸入 :wq 儲存
2019年5月21日 星期二
2019年5月19日 星期日
Android-Properties 存取配置參數
想必各位開發者有過因為開發環境和正式環境時常交換
所以必須拉出一個設定檔案來作切換
我們這次來寫一個讀取設定檔案的參數
步驟流程:
1 . 將設定檔放至指定路徑
2 . 設置存取方法
圖文步驟 :
1 . 在專案指定路徑下建立 assets ( 完成路徑 : src/main/assets )
2 . 建立剛剛路徑下建立 config.properties 檔案
3 . 編寫檔案內容
4 . 編寫程式碼存取內容
參考資料:Properties
參考資料:Can't use fonts in my project: - “Error:Error: The file name must end with .xml”
所以必須拉出一個設定檔案來作切換
我們這次來寫一個讀取設定檔案的參數
步驟流程:
1 . 將設定檔放至指定路徑
2 . 設置存取方法
圖文步驟 :
1 . 在專案指定路徑下建立 assets ( 完成路徑 : src/main/assets )
2 . 建立剛剛路徑下建立 config.properties 檔案
3 . 編寫檔案內容
4 . 編寫程式碼存取內容
Properties mProperties = new Properties();
try {
mProperties.load(this.getAssets().open("config.properties"));
String ip = mProperties.getProperty("ip");
System.out.println("IP : " + ip);
} catch (IOException e) {
e.printStackTrace();
}
參考資料:Properties
參考資料:Can't use fonts in my project: - “Error:Error: The file name must end with .xml”
訂閱:
文章 (Atom)