Here you can find the source of loadInstallProps()
public static Properties loadInstallProps()
//package com.java2s; //License from project: Open Source License import java.io.FileInputStream; import java.util.Properties; public class Main { public static Properties loadInstallProps() { try {/* w ww. j a va 2 s . c o m*/ Properties prop = new Properties(); prop.load(new FileInputStream("caTissueInstall.properties")); return prop; } catch (Exception e) { throw new RuntimeException("Error loading install properties file", e); } } }