程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> J2SE >> J2SE綜合:屬性配置文件的使用方法

J2SE綜合:屬性配置文件的使用方法

編輯:J2SE

我們常常使用配置文件來進行工程屬性的配置,那麼我們如何使用我們的屬性文件呢?
 
假設有一個連接數據庫的屬性配置文件jdbc.propertIEs,
 
文件內容如下:
 
jdbc.driver=com.microsoft.jdbc.sqlserver.SQLServerDriver
 jdbc.url=jdbc:microsoft:sqlserver://10.0.0.168:1433;
 jdbc.username=sa
 jdbc.passWord=sa
 jndi.databaseName=northwind
 
那麼如何使用配置文件呢?其實很簡單
 
我們創建如下類:
 
/*
 * Created on 2005-8-15
 *This class is created to test the using of  the propertIEs file
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
 package zy.pro.wd.demo;
 
import Java.io.FileInputStream;
 import Java.util.PropertIEs;
 public class PropertIEsDemo {
 /**
 *
 */
 public PropertIEsDemo() {
 super();
 // TODO Auto-generated constructor stub
 }
 public void testPropertIEsFile(){
 try{
 Properties pro = new PropertIEs();
 pro.load(new FileInputStream("src/jdbc.propertIEs"));
 System.out.println(pro.getProperty("jdbc.driver"));
 System.out.println(pro.getProperty("jdbc.url"));
 }catch(Exception e){
 e.printStackTrace();
 }
 }
 public static void main(String[] args) {
 PropertiesDemo pd=new PropertIEsDemo();
 pd.testPropertIEsFile();
 }
 }
 
粗體部分是主要部分,通過load()方法來加載配置文件,然後通過getProperty()方法來取得配置文件中的屬性。
 
注意:取得配置文件的相對路徑一定要正確,否則,將會拋出找不到文件的異常。我的配置文件路徑如下圖:
 
程序輸出結果如下:
 
com.microsoft.jdbc.sqlserver.SQLServerDriver
 
jdbc:microsoft:sqlserver://10.0.0.168:1433;
 
此程序在Eclipse3.0下調試通過。

本文來自編程入門網:http://www.bianceng.cn/Programming/Java/201107/27858.htm

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved