JAVA WEB Get Properties file, store path and get path

Source: Internet
Author: User

First understand, ClassPath: refers to: web-inf\classes This directory, usually put the file in the SRC folder, or create a new file and add to the build path. The IDE automatically places files under classes when synchronizing files to Tomcat.

Get the code for the properties:

Public Properties loadProperties () {Properties Properties = new Properties (); InputStream stream = This.getclass (). getClassLoader (). getResourceAsStream ("/xxx.properties"); try {properties.load (stream);} catch (IOException e) {// TODO auto-generated catch Blocke.printstacktrace ();} return properties;}

Please note: the path
/handlerfactory.properties
There/means look up from the classpath root directory, no/representation is found under the current package.

The most important point of the pit is this:

Properties filename cannot be capitalized,

Properties filename cannot be capitalized,

Properties filename cannot be capitalized,

You can't find a file in your life.

Important thing to say three times!

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

JAVA WEB Get Properties file, store path and get path

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.