码迷,mamicode.com
首页 > 编程语言 > 详细

[Java]Making a Jar file with eclispe

时间:2015-06-16 16:21:13      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

技术分享

技术分享

Code example :

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"));
//	}
}

 

Put jar to the tool‘s lib folder, eg: SoapUI,  use it by Groovy like this :

package com.file.properties

def path = "D:\\SoapUIStudy\\application.properties"

ReadProperties p = new ReadProperties(path)
log.info p.getProperty("name")

 

[Java]Making a Jar file with eclispe

标签:

原文地址:http://www.cnblogs.com/MasterMonkInTemple/p/4580657.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!