Path issues in Java

Source: Internet
Author: User

Path issues in Java

Code description, as follows:

 Packagecom.merlin.test;ImportJava.io.InputStream; Public classTest { Public Static voidMain (string[] args) {NewTest (). Testpath (); }     Public  voidTestpath () {//when using the getResourceAsStream () method, the root path refers to Classpath, which is the SRCInputStream In0 = This. GetClass (). getResourceAsStream ("/");//Note that the backslash is writtenSystem.out.println (IN0);//can read to the//not applicable when followed by path, is the class file pathInputStream in1 = This. GetClass (). getResourceAsStream ("A.xml");//Note that the backslash is writtenSystem.out.println (in1);//can read to theInputStream in2 = This. GetClass (). getResourceAsStream ("/b.xml");//Note that the backslash is writtenSystem.out.println (in2);//can read to theInputStream in3= This. GetClass (). getResourceAsStream ("/a.xml");//Note that the backslash is writtenSystem.out.println (in3);//cannot read                    }}

Path issues in Java

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.