Java parsing the property file (and the SQL execution time limit is written in XML, adding extensions, without changing the source code).

Source: Internet
Author: User

In the Java project, some configuration parameters are saved in the property file, so that the original code is not modified to directly modify the property file.

Propertyparser.java

Package Com.discover.parse;import Java.io.file;import Java.io.fileinputstream;import java.io.inputstream;import java.util.properties;/** * @author Administrator * */public class Propertyparser {    /**     * @param args    */ public static void Main (string[] args) {        //TODO auto-generated Method Stub        Properties Properties = new properties ();        String name = PropertyParser.class.getResource (""). GetPath ();        String Path = name + "Config.properties";        File File = new file (path);        if (file.exists ())        {            try{                inputstream fis = new FileInputStream (file);                Properties.load (FIS);                System.out.println (properties.getproperty ("IP"));            Fis.close ();            } catch (Exception e) {                //Todo:handle Exception            }        }    }

  
Config.properties

[plain] view plain copy

      1. ip=127.0.0.1
        Run the program, the console prints the results

Java parsing the property file (and the SQL execution time limit is written in XML, adding extensions, without changing the source code).

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.