首页 > 编程语言 > 详细

[Java]Read Properties file

时间:2015-06-16 16:15:24      阅读:153      评论:0      收藏:0      [点我收藏+]

技术分享

package com.file.properties;

import java.io.FileInputStream;
import java.util.Properties;

public class ReadProperties {
	
	Properties prop;
	
	public ReadProperties(String path) {
		prop = new Properties();
		try{
			FileInputStream fs = new FileInputStream(path);
			prop.load(fs);
		}catch(Exception e){
			
		}	
	}
	
	public String getProperty(String key) {
		return prop.getProperty(key);
	}

	public static void main(String[] args) {
		ReadProperties readProperties = new ReadProperties("D:\\SoapUIStudy\\application.properties");
		System.out.println(readProperties.getProperty("name"));
	}
}

 

Result :

  soapUI

[Java]Read Properties file

原文:http://www.cnblogs.com/MasterMonkInTemple/p/4581015.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!