Summary of several methods of Java reading property files _java

Source: Internet
Author: User

1. The load () method using the Java.util.Properties class

Example:

Java code
InputStream in = Lnew bufferedinputstream (new FileInputStream (name));
Properties P = new properties ();
P.load (in);

2. The Getbundle () method using the Java.util.ResourceBundle class

Example:

Java code
ResourceBundle RB = Resourcebundle.getbundle (name, Locale.getdefault ());

3. Using the constructor of the Java.util.PropertyResourceBundle class

Example:

Java code
InputStream in = new Bufferedinputstream (new FileInputStream (name));
ResourceBundle RB = new propertyResourceBundle (in);

4. The getResourceAsStream () method using class variables

Example:

Java code
InputStream in = JProperties.class.getResourceAsStream (name);
Properties P = new properties ();
P.load (in);

5. The getResourceAsStream () method of the Java.lang.ClassLoader obtained using Class.getclassloader ()

Example:

Java code
InputStream in = JProperties.class.getClassLoader (). getResourceAsStream (name);
Properties P = new properties ();
P.load (in);

6. Getsystemresourceasstream () static method using the Java.lang.ClassLoader class

Example:

Java code
InputStream in = Classloader.getsystemresourceasstream (name);
Properties P = new properties ();
P.load (in);

7. Use Apache's Propertiesconfiguration class

Example:
Java code
Configuration config = new Propertiesconfiguration ("Test.properties");
Config.getproperty (key);

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.