Six ways Java loads the properties file

Source: Internet
Author: User

1. Using the Load () method of the Java.util.Properties class
Example: InputStream in = Lnew bufferedinputstream (new FileInputStream (name));
Properties P = new properties ();
p.load (in);

2. Using the Getbundle () method of the Java.util.ResourceBundle class
Example: ResourceBundle RB = Resourcebundle.getbundle (name, Locale.getdefault ());

3. Use the constructor of the Java.util.PropertyResourceBundle class
Example: inputstream in = new Bufferedinputstream (new FileInputStream (name));
ResourceBundle RB = new propertyResourceBundle (in);

4. The getResourceAsStream () method using the class variable
Example: InputStream in = JProperties.class.getResourceAsStream (name);
Properties P = new properties ();
p.load (in);

5. The getResourceAsStream () method of Java.lang.ClassLoader obtained using Class.getclassloader ()
Example: InputStream in = JProperties.class.getClassLoader (). getResourceAsStream (name);
Properties P = new properties ();
p.load (in);

6. Using the Getsystemresourceasstream () static method of the Java.lang.ClassLoader class
Example: InputStream in = Classloader.getsystemresourceasstream (name);
Properties P = new properties ();
p.load (in);

Supplement

the getResourceAsStream () method of Javax.servlet.ServletContext can be used in Servlets
Example: InputStream in = context.getresourceasstream (path);
Properties P = new properties ();
p.load (in);

Six ways Java loads the properties file

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.