Created
March 24, 2013 19:35
-
-
Save rafali/5233186 to your computer and use it in GitHub Desktop.
Load .properties file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#should be in a folder added to the classpath | |
api_key=1234abcd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ResourceBundle config = ResourceBundle.getBundle("config"); | |
System.out.println(config.getString("api_key")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment