//Read properties file.
Properties properties = new Properties();
try
{
properties.load(new FileInputStream("conf/Services.properties"));
String string = properties.getProperty("TEST");
System.out.println("Test = " + string);
}
catch (IOException e)
{
System.out.println(e.getMessage());
}
catch (Exception e)
{
System.out.println(e.getMessage());
}
No comments:
Post a Comment