Java Project load configuration file tool class __java

Source: Internet
Author: User
Tags log4j

Java Project load configuration file tool class

Package com.loadproperties;
Import java.io.IOException;
Import Java.io.InputStream;

Import java.util.Properties;
	
	public class Configutil {private static inputstream input;
	
	Private volatile properties Configuration = new properties ();
	A single instance of private static Configutil config;
		public static Configutil getinstance (String path) {if (config==null) {config=new configutil (path);
	} return config;
		The load configuration file private Configutil (String path) {input =this.getclass (). getResourceAsStream (path) is completed in the//constructor.
        This.configuration.clear ();
		try {this.configuration.load (input);
			catch (IOException e) {System.out.println (E.getmessage ());
		E.printstacktrace (); } public string GetStringValue (string key) throws IOException {return This.configuration.getProperty (
    Key); public string GetStringValue (string key, String defaultvalue) {String value = This.configuration.getProperty (key
		); if (value = = null) {return DefaultvaluE
		else {return value;
	 } public void Setconfiguration (string key, String value) {This.configuration.setProperty (key, value);
		public static void Main (string[] args) throws IOException {String path= "/com/loadproperties/log4j.properties";
	System.out.println (config.getinstance (path). GetStringValue ("Log4j.rootlogger"));
 }

}


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.