在現實工做中,咱們經常須要保存一些系統配置信息,你們通常都會選擇配置文件來完成,本文根據筆者工做中用到的讀取配置文件的方法小小總結一下,主要敘述的是spring讀取配置文件的方法。java
(一)新建一個java bean(HelloBean. java)
java代碼package chb.demo.vo; public class HelloBean { private String helloWorld; public String getHelloWorld() { return helloWorld; } public void setHelloWorld(String helloWorld) { this.helloWorld = helloWorld; } }
(二)構造一個配置文件(beanConfig.xml)web
xml 代碼
這裏介紹兩種技術:利用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代碼BeanDefinitionRegistry reg = new DefaultListableBeanFactory(); PropertiesBeanDefinitionReader reader = new PropertiesBeanDefinitionReader(reg); reader.loadBeanDefinitions(new ClassPathResource("beanConfig.properties")); BeanFactory factory = (BeanFactory)reg; HelloBean helloBean = (HelloBean)factory.getBean("helloBean"); System.out.println(helloBean.getHelloWorld());
(二)利用java.util.Properties讀取屬性文件好比,咱們構造一個ipConfig.properties來保存服務器ip地址和端口,如:properties 代碼ip=192.168.0.1 port=8080
則,咱們能夠用以下程序來得到服務器配置信息:java代碼InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("ipConfig.properties"); Properties p = new Properties(); try { p.load(inputStream); } catch (IOException e1) { e1.printStackTrace(); } System.out.println("ip:"+p.getProperty("ip")+",port:"+p.getProperty("port"));
下面僅僅是列出讀取文件的過程,剩下的解析成爲properties的方法同上服務器
1 FileInputStream reader = new FileInputStream("config.properties");app
num = reader.read(byteStream); ByteArrayInputStream inStream = new ByteArrayInputStream(byteStream, 0, num); 四.要讀取的配置文件和類文件一塊兒打包到一個Jar中 String currentJarPath = URLDecoder.decode(YourClassName.class.getProtectionDomain().getCodeSource().getLocation().getFile(), "UTF-8"); //獲取當前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();