将Web站点下的绝对路径转换为虚拟路径

2016-02-19 18:59 56 1 收藏

今天图老师小编给大家介绍下将Web站点下的绝对路径转换为虚拟路径,平时喜欢将Web站点下的绝对路径转换为虚拟路径的朋友赶紧收藏起来吧!记得点赞哦~

【 tulaoshi.com - Web开发 】

  很经常使用到的一个功能,但在在网上却一直没有找到相关的解决方法,今天借着项目应用到的机会写了两个将绝对路径转换为虚拟路径封装好的方法
  将Web站点下的绝对路径转换为相对于指定页面的虚拟路径
  /**//// summary
  /// 将Web站点下的绝对路径转换为相对于指定页面的虚拟路径
  /// /summary
  /// param name="page"当前页面指针,一般为this/param
  /// param name="specifiedPath"绝对路径/param
  /// returns虚拟路径, 型如: ../..//returns
  public static string ConvertSpecifiedPathToRelativePathForPage(Page page, string specifiedPath)
  {
      // 根目录虚拟路径
      string virtualPath = page.Request.ApplicationPath;
      // 根目录绝对路径
      string pathRooted = HostingEnvironment.MapPath(virtualPath);
      // 页面虚拟路径
      string pageVirtualPath = page.Request.Path;

      if (!Path.IsPathRooted(specifiedPath) || specifiedPath.IndexOf(pathRooted) == -1)
      {
          throw new Exception(string.Format(""{0}"是虚拟路径而不是绝对路径!", specifiedPath));
      }

      // 转换成相对路径
      //(测试发现,pathRooted 在 VS2005 自带的服务器跟在IIS下根目录或者虚拟目录运行似乎不一样,
      // 有此地方后面会加"", 有些则不会, 为保险起见判断一下)
      if (pathRooted.Substring(pathRooted.Length - 1, 1) == "")
      {
          specifiedPath = specifiedPath.Replace(pathRooted, "/");
      }
      else
      {
          specifiedPath = specifiedPath.Replace(pathRooted, "");
      }

      string relativePath = specifiedPath.Replace("", "/");

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)

      string[] pageNodes = pageVirtualPath.Split('/');

      // 减去最后一个页面和前面一个 "" 值
      int pageNodesCount = pageNodes.Length - 2;

      for (int i = 0; i pageNodesCount; i++)
      {
          relativePath = "/.." + relativePath;
      }

      if (pageNodesCount 0)
      {
          // 如果存在 ".." , 则把最前面的 "/" 去掉
          relativePath = relativePath.Substring(1, relativePath.Length - 1);
      }

      return relativePath;
  }

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)

  第二个方法显然是从第一个方法中的前部分抽取出来的,所以懒得去添加相关注释 :P
  将Web站点下的绝对路径转换为虚拟路径
  /**//// summary
  /// 将Web站点下的绝对路径转换为虚拟路径
  /// 注:非Web站点下的则不转换
  /// /summary
  /// param name="page"当前页面指针,一般为this/param
  /// param name="specifiedPath"绝对路径/param
  /// returns虚拟路径, 型如: ~//returns
  public static string ConvertSpecifiedPathToRelativePath(Page page, string specifiedPath)
  {
      string virtualPath = page.Request.ApplicationPath;

      string pathRooted = HostingEnvironment.MapPath(virtualPath);

      if (!Path.IsPathRooted(specifiedPath) || specifiedPath.IndexOf(pathRooted) == -1)
      {
          return specifiedPath;
      }

      if (pathRooted.Substring(pathRooted.Length - 1, 1) == "")
      {
          specifiedPath = specifiedPath.Replace(pathRooted, "~/");
      }
      else
      {
          specifiedPath = specifiedPath.Replace(pathRooted, "~");
      }

      string relativePath = specifiedPath.Replace("", "/");
      return relativePath;
  }

  将虚拟路径转绝对路就没什么好说的了, HttpRequest.MapPath 方法专门干这事

来源:http://www.tulaoshi.com/n/20160219/1619756.html

延伸阅读
  问:我怎样才能将Microsoft Access数据表中的数据转换为XML格式? 答:以下应用程序可以帮助您将Access数据转换为XML格式:Access 2002、 ADO 2.5和SQLXML。您可以通过Access 2002(Microsoft Office XP的一部分)查询数据或者使用XML格式保存数据。您可能想自动完成这个转换过程。ADO 2.5及其后续版本使您可以将数据打开到一个记录...
标签: PHP
PHP 实现的将图片转换为TXT <?php/*2015年10月19日10:24:59*/// 打开一幅图像$file_name='d:\ascii_dora.png';$chars = "$@B%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\|()1{}[]?-_+~<i!lI;:,\"^`'. ";function getimgchars($color_tran,$chars){ $length = strlen($chars); $alpha=$color_tran['alpha']; $r=$color_tran['red']; ...
标签: 电脑入门
问:我是一名学生,现在老师上课一般都用PPT课件上课,我打算把老师课件打印出来复习。但是PPT直接打印效果不好,而且包含一些不需要的图片等等。我想把PPT幻灯片转化为Word文档打印出来。不过幻灯片一张一张复制太慢了,想寻找一款软件,把PPT幻灯片转化为Word文档,包括文本框里的内容、图表、照片。 答:有这种转换工具,但使用效果并不令...
很长时间以来,都认为只能通过绝对路径引用标准DLL中的函数。其实,你也可以用相对路径。很简单的,现在就尝试一下吧。 1)绝对路径方法 比如你的DLL文件位于c:estDLLdebugestDLL.dll 一般来说,你需要在VB中作如下声明 DeclareSubmytestLib"c:estDLLdubugestDLL.dll"(ByValxAsLong) 另外的一个变...
标签: windows10
win10系统下如何将语音转换为文字   对于很多不会打字的老年人来说,上网除了对鼠标进行操作以外,其次就是通过语音进行聊天,对于不会打字的用户,如何在网络中实现自定义搜索相关信息呢?这时我们就需要借助语音识别软件,当然在目前的第三方软件中已包含该功能,但殊不知,其实在讯飞语音输入法中也有这个功能,用户通过这个功能能...

经验教程

798

收藏

93
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部