Java-Tool Class-read configuration file

Source: Internet
Author: User

/** * Company * Copyright (C) 2004-2018 All rights Reserved. */package com.yubin.test;import java.io.*;import java.net.url;import java.util.properties;/** * @author Administrator * @version $Id Proutil.java, v 0.1 2018-01-25 22:11 Administrator Exp $$ */public class Proutil {private static Proper    Ties props = null;    private static File configfile = null;    private static long filelastmodified = 0L;    private static String Configfilename = "Spring/database.properties";        private static void init () {URL url = ProUtil.class.getClassLoader (). getresource (Configfilename);        ConfigFile = new File (Url.getfile ());        filelastmodified = Configfile.lastmodified ();        props = new Properties ();    Load (); } private static void Load () {try {props.load (new InputStreamReader (New FileInputStream (ConfigFile)            , "UTF-8"));        filelastmodified = Configfile.lastmodified (); } catch (IOException e) {throw new RuntimeException (e); }} public static String GetConfig (string key) {if (configfile = = null) | | (props = = null))        Init (); if (configfile.lastmodified () > Filelastmodified) load ();    Reload the config file when the file is detected as modified return Props.getproperty (key);    } public static void Main (string[] args) {System.out.println (GetConfig ("Jdbc.driver")); }}

This article refers to the address:

Java-Tool Class-read configuration file

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.