JAva読み取り、propertiesファイルへの書き込み、Propertiesツールクラス
3298 ワード
詳細
一.ResourceBundleで
ResourceBundle rb = ResourceBundle.getBundle("env");//なし.properties末尾String driver=rb.getString("jdbc.driverClassName");
二.Propertiesで
Properties env = new Properties();
//InputStreamis=現在のクラス.class.getClassLoader().getResourceAsStream("/env.properties")
InputStreamis=現在のクラス.class.getClassLoader().getResourceAsStream("env.properties")
//InputStream is = ClassLoader.getSystemResourceAsStream("env.properties");env.load(is);
env.getProperty("jdbc.driverClassName")
1つ目は/、3つ目はwebコンテナの下で問題があります.webコンテナに複数のClassLoaderがあるため、ファイルが見つかりません.
env.properties
Propertiesツールクラス
JAVA操作propertiesファイル
http://www.cnblogs.com/panjun-Donet/archive/2009/07/17/1525597.html
Java Propertiesファイルを読み込む6つの方法
http://hi.baidu.com/hgd0324/item/1d5e923973b77c4d033edcaf
一.ResourceBundleで
ResourceBundle rb = ResourceBundle.getBundle("env");//なし.properties末尾String driver=rb.getString("jdbc.driverClassName");
二.Propertiesで
Properties env = new Properties();
//InputStreamis=現在のクラス.class.getClassLoader().getResourceAsStream("/env.properties")
InputStreamis=現在のクラス.class.getClassLoader().getResourceAsStream("env.properties")
//InputStream is = ClassLoader.getSystemResourceAsStream("env.properties");env.load(is);
env.getProperty("jdbc.driverClassName")
1つ目は/、3つ目はwebコンテナの下で問題があります.webコンテナに複数のClassLoaderがあるため、ファイルが見つかりません.
env.properties
jdbc.driverClassName= oracle.jdbc.driver.OracleDriver
jdbc.url= jdbc:oracle:thin:@192.168.1.186:1521:orcl
jdbc.username=xxx
jdbc.password=xxx
Propertiesツールクラス
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.util.Properties;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* Properties
* @author happyqing
* @since 2014.6.6
*/
public class PropertiesUtil {
private static final Log log = LogFactory.getLog(PropertiesUtil.class);
private static Properties env = new Properties();
static {
try {
//PropertiesHelper.class.getResourceAsStream("env.properties"); // /com/cici/conf/env.properties
//ClassLoader.getSystemResourceAsStream("env.properties");
InputStream is = PropertiesUtil.class.getClassLoader().getResourceAsStream("env.properties");
env.load(is);
is.close();
} catch (Exception e) {
log.error(e);
}
}
/**
*
* @param key
* @return
*/
public static String getProperty(String key){
return env.getProperty(key);
}
/**
*
* @param key
* @param value
*/
public static void setProperty(String key, String value){
try{
File file = new File(PropertiesUtil.class.getClassLoader().getResource(".").getPath()+File.separator+"env.properties");
FileOutputStream outStream = new FileOutputStream(file);
env.setProperty(key, value);
// properties
env.store(outStream, null);
} catch (Exception ex) {
log.error(ex);
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println(PropertiesUtil.getProperty("txtLength"));
//System.out.println(PropertiesUtil.class.getClassLoader().getResource(".").getPath());
}
}
JAVA操作propertiesファイル
http://www.cnblogs.com/panjun-Donet/archive/2009/07/17/1525597.html
Java Propertiesファイルを読み込む6つの方法
http://hi.baidu.com/hgd0324/item/1d5e923973b77c4d033edcaf