DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
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);





Comments
Snippets Manager replied on Mon, 2012/05/07 - 2:15pm
Snippets Manager replied on Mon, 2012/05/07 - 2:15pm