Simple way to get a path from a URL in C #: New Uri (URL). Absolutepath

Source: Internet
Author: User

Today, when writing code, you encounter a problem:

How do I get "/images/job_logo.gif" from the string "Http://job.cnblogs.com/images/job_logo.gif"?

The solution to this problem requires:

1. Only the APIs in the. NET class library can be invoked;

2. In the simplest way to achieve.

At first I thought of System.IO.Path, and the code was as follows:

Path.getdirectoryname (URL) + "\" + path.getfilename (URL);

Get the wrong result:

Http:\job.cnblogs.com\images\job_logo.gif

Next comes the System.Web.VirtualPathUtility, the code is as follows:

Virtualpathutility.getdirectory (URL) + virtualpathutility.getfilename (URL);

Run an error:

System.ArgumentException:The relative virtual path ' http:/job.cnblogs.com/images/job_logo.gif ' isn't allowed here.

Change "Http://job.cnblogs.com/images/job_logo.gif" to "/images/job_logo.gif" to get the correct result.

later , on the StackOverflow inspired, with System.Uri easy to handle! The code is as follows:

The new Uri (URL). Absolutepath;

This article URL address: http://www.bianceng.cn/Programming/csharp/201410/45477.htm

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.