Java Read Properties configuration file

Source: Internet
Author: User

Import Java.io.ioexception;import java.io.inputstream;import java.util.properties;/** * The use of the Properties class, The use of this class can be easily taken to the contents of the configuration file * We can read the configuration * systemconfig.getproperty ("name") directly by invoking the following method in other classes. * @author Leejuen * */public class Systemconfig {private static Properties systemconfig;private static String configpath;p    Rivate systemconfig () {}static{systemconfig = new Properties (); Configpath = "./sys-config.properties"; Set the profile path try {/** * When using Class.getresourceasstream, the resource path has two ways, * one with/start, then the path is a specified absolute path, if not with/start, the path is relative to the package containing the class When using Classloader.getresourceasstream, the * path uses the absolute path relative to classpath directly. */class classconfig = Class.forName ("Com.szkingdom.leejuen.SystemConfig"); InputStream is = Classconfig.getresourceasstream (Configpath);//inputstream is = new FileInputStream ("Sys-config.properties"); Systemconfig.load (IS);} catch (IOException e) {//Todo auto-generated catch Blocke.printstacktrace ();} catch (ClassNotFoundException e) {//Todo A Uto-generated catch Blocke.printstacktrace ();}} PubliC Static string GetProperty (String key) {return Systemconfig.getproperty (key);}} 



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.