J2SE API six ways to read properties files

Source: Internet
Author: User

Six ways to read a properties file using the J2SE API:

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

Example: 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: ResourceBundle RB = Resourcebundle.getbundle (name, Locale.getdefault ());

3. Using 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 class variables

Example: 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: 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: InputStream in = Classloader.getsystemresourceasstream (name);

Properties P = new properties ();

P.load (in);

Add

Javax.servlet.ServletContext getResourceAsStream () method can be used in the servlet

Example: InputStream in = context.getresourceasstream (path);

Properties P = new properties ();

P.load (in);

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.