Can you explain your problem? And post code.
The following works just fine:public static void main(String[] args)
{
...
Properties props = new Properties();
InputStream in = ExampleHost.class.getResourceAsStream("/example.properties");
props.load(in);
in.close();
String issuerName = props.getProperty("issuerName");
String serviceName = props.getProperty("serviceName");
new ExampleHost(issuerName, serviceName);
}
NB: I am confused as to why you posted to the security board?