. class and. Project and. Properties File Usage

Source: Internet
Author: User
Tags list of attributes

. classpath file

From the data we can easily see that the above describes the project's dependent files:

    1. The exact location of the source file (kind= "src")
    2. Operating system environment (kind= "con")
    3. Specific location information for the project's library (kind= "Lib")
    4. In each LIB's XML child node, there is additional configuration information about it (for example, the "Javadoc_location" I configured)
    5. Output Directory of the project (kind= "Output")

In general, this document is the configuration of the entire project operating environment.

. Project file

From the data, we can see that these configurations are primarily about describing the basic engineering information:

    1. Project Name <name></name>
    2. Project Comment Description <comment></comment>
    3. Additional Eclipse plug-ins required by the runtime <natures></natures>, and their specific loading method information <buildSpec></buildSpec>

If you add a lot of additional plugins to your project during the development process, it will inevitably cause your eclipse to start slowly. In this case, you can remove some plugins from the file, but you will be able to load those plugins when you open those associated files.

. Propertirs file

is a configuration file, key-value pair key = value, used to configure common parameters such as:

The main method of Properties is in Java.util. This class inherits Hashtable, and the main methods are:

1, GetProperty (String key) through the parameter key, get the value corresponding to key.

2, Load (InputStream instream), read the list of attributes (key-value pairs) from the input stream. gets all the key-value pairs in the file by loading the specified file (properties file).  To search for GetProperty (String key).

3, Store (OutputStream out,string comments), in contrast to load, the method writes key-value pairs to the specified file.

3, SetProperty (key, value), set the key value pair, equivalent to call Hashtable in the put

. class and. Project and. Properties File Usage

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.