[Training Video - 6] [File Reading] [Java] Read Properties file

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

posted on 2015-06-16 15:52  张缤分  阅读(336)  评论(0编辑  收藏  举报

导航