uri 的相对路径

发布于 2024-11-07 11:32:10 字数 67 浏览 0 评论 0原文

我有一个 Uri 对象 - 它的什么属性会给我相对路径?我如何使用此 Uri 破译文件的相对路径。我正在用 c# 编码。

I have a Uri object - what property of it will give me the relative path? Of how can I decipher the relative path the file with this Uri. I am coding in c#.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

可是我不能没有你 2024-11-14 11:32:10

使用 Uri.MakeRelativeUri 方法(系统)

直接 MSDN:

// Create a base Uri.
Uri address1 = new Uri("http://www.contoso.com/");

// Create a new Uri from a string.
Uri address2 = new Uri("http://www.contoso.com/index.htm?date=today"); 

// Determine the relative Uri.  
Console.WriteLine("The difference is {0}", address1.MakeRelativeUri(address2));

此外,如果您总是从域的根目录查找相对路径,您还可以使用 myUri.AbsolutePath

这是 Uri 调试视图的屏幕截图,其中包含两个示例使用以下 Uri 对象

Uri myUri = new Uri("http://msdn.microsoft.com/en-us/library/system.uri.makerelativeuri.aspx#Y600");
Uri myHost = new Uri("http://msdn.microsoft.com/");
Uri myHost2 = new Uri("http://msdn.microsoft.com/en-us/");

Uri 调试

use the Uri.MakeRelativeUri Method (System)

straight from MSDN:

// Create a base Uri.
Uri address1 = new Uri("http://www.contoso.com/");

// Create a new Uri from a string.
Uri address2 = new Uri("http://www.contoso.com/index.htm?date=today"); 

// Determine the relative Uri.  
Console.WriteLine("The difference is {0}", address1.MakeRelativeUri(address2));

furthermore, if you are always looking for the relative path from the root of the domain you could also use myUri.AbsolutePath

Here's a screenie of the Uri debug view with two examples of MakeRelativeUri at the bottom using the following Uri objects

Uri myUri = new Uri("http://msdn.microsoft.com/en-us/library/system.uri.makerelativeuri.aspx#Y600");
Uri myHost = new Uri("http://msdn.microsoft.com/");
Uri myHost2 = new Uri("http://msdn.microsoft.com/en-us/");

Uri debug

相权↑美人 2024-11-14 11:32:10

您可以向 Uri 添加相对路径,如下所示。

var Url = new Uri("/something/test", UriKind.Relative);

You can add a relative path to the Uri like below.

var Url = new Uri("/something/test", UriKind.Relative);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文