11 Ağustos 2007 Cumartesi

Read a properties file inside jar file

String sConfigFile = "config/mail.properties";
InputStream in = mailSender.class.getClassLoader().getResourceAsStream(sConfigFile);
if (in == null) {
// File not found! (Manage the problem)
}
Properties props = new java.util.Properties();
props.load(in);


0 Comments: