import ConverterHome;
public class ConverterClient {
public static void main(String[] args) {
try {
Properties props = new Properties();
Properties sysProps = System.getProperties();
try {
props.load (new FileInputStream ("test.properties"));
sysProps.putAll(props);
} catch (Exception e)









