Read properties file


/ Published in: Java
Save to your folder(s)



Copy this code and paste it in your HTML
  1. Properties properties = new Properties();
  2. try {
  3. properties.load(new FileInputStream("filename.properties"));
  4. } catch (IOException e)
  5. {
  6. }

URL: http://www.exampledepot.com/egs/java.util/Props.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.