在現實工作中,我們常常需要保存一些系統配置信息,大家一般都會選擇配置文件來完成,本文根據筆者工作中用到的讀取配置文件的方法小小總結一下,主要敘述的是spring讀取配置文件的方法。
一.讀取xml配置文件
(一)新建一個java bean(HelloBean. java)
java代碼(二)構造一個配置文件(beanConfig.xml)
xml 代碼(三)讀取xml文件
1.利用ClassPathXmlApplicationContext
java代碼2.利用FileSystemResource讀取java代碼值得注意的是:利用FileSystemResource,則配置文件必須放在project直接目錄下,或者寫明絕對路徑,否則就會拋出找不到文件的異常
二.讀取properties配置文件
這里介紹兩種技術:利用spring讀取properties 文件和利用java.util.Properties讀取(一)利用spring讀取properties 文件我們還利用上面的HelloBean. java文件,構造如下beanConfig.properties文件:properties 代碼
- helloBean.class=chb.demo.vo.HelloBean
- helloBean.helloWorld=Hello!chb!
屬性文件中的"helloBean"名稱即是Bean的別名設定,.class用於指定類來源。然后利用org.springframework.beans.factory.support.PropertiesBeanDefinitionReader來讀取屬性文件
java代碼(二)利用java.util.Properties讀取屬性文件比如,我們構造一個ipConfig.properties來保存服務器ip地址和端口,如:properties 代碼
- ip=192.168.0.1
- port=8080
則,我們可以用如下程序來獲得服務器配置信息:java代碼
三.讀取位於Jar包之外的properties配置文件
下面僅僅是列出讀取文件的過程,剩下的解析成為properties的方法同上
1 FileInputStream reader = new FileInputStream("config.properties");
2 num = reader.read(byteStream);
JarFile currentJar = new JarFile(currentJarPath);
JarEntry dbEntry = currentJar.getJarEntry("包名/配置文件");
InputStream in = currentJar.getInputStream(dbEntry);
//以上YourClassName是class全名,也就是包括包名
修改:
JarOutputStream out = new FileOutputStream(currentJarPath);
out.putNextEntry(dbEntry);
out.write(byte[] b, int off, int len); //寫配置文件
。。。
3 ByteArrayInputStream inStream = new ByteArrayInputStream(byteStream, 0, num);
四.要讀取的配置文件和類文件一起打包到一個Jar中
JarFile currentJar = new JarFile(currentJarPath);
JarEntry dbEntry = currentJar.getJarEntry("包名/配置文件");
InputStream in = currentJar.getInputStream(dbEntry);
//以上YourClassName是class全名,也就是包括包名
修改:
JarOutputStream out = new FileOutputStream(currentJarPath);
out.putNextEntry(dbEntry);
out.write(byte[] b, int off, int len); //寫配置文件
。。。
out.close();

