Java truncates a file name from a path with a backslash

Source: Internet
Author: User

For example, the obtained file path is C:/Documents and Settings/Leeo/My Documents documents/logo.gif.

Now we want to get the image name logo.gif. We know that the Backslash "/" is an escape character, so we cannot directly

String temp [] = filepath. Split ("/"); // The value of filepath is the file path above.

To split the file path.

/*
* In Java, // indicates a/, while in RegEx, // also indicates /,
* When /// is resolved to RegEx //
**/
String temp [] = filepath. Split ("////");

In Linux

System. getproperty ("file. separator ","//")

The output is "/", while the output is "/" in windows. Therefore, you must be compatible with the two.

String temp [] = filepath. replaceall ("//", "/"). Split ("/");

Obtain the complete file nameCodeAs follows:

String temp [] = filepath. replaceall ("//", "/"). Split ("/");
String filename = ""
If (temp. length> 1 ){
Filename = temp [temp. Length-1];
}

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.