控件中国网现已改版,您看到的是老版本网站的镜像,系统正在为您跳转到新网站首页,请稍候.......
中国最专业的商业控件资讯网产品咨询电话:023-67870900 023-67871946
产品咨询EMAIL:SALES@COMPONENTCN.COM

Web站点下的绝对路径转换为虚拟路径方法详解

作者:不详 出处:IT专家网论坛 2010年02月03日 阅读:

很经常使用到的一个功能,但在在网上却一直没有找到相关的解决方法,今天借着项目应用到的机会写了两个将绝对路径转换为虚拟路径封装好的方法

  将Web站点下的绝对路径转换为相对于指定页面的虚拟路径

   /// 
  /// 将Web站点下的绝对路径转换为相对于指定页面的虚拟路径
  /// 
  /// 当前页面指针,一般为this
  /// 绝对路径
  /// 虚拟路径, 型如: ../../
  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("\", "/");
  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;
  }

  第二个方法显然是从第一个方法中的前部分抽取出来的,所以懒得去添加相关注释 :P

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

 /// 
  /// 将Web站点下的绝对路径转换为虚拟路径
  /// 注:非Web站点下的则不转换
  /// 
  /// 当前页面指针,一般为this
  /// 绝对路径
  /// 虚拟路径, 型如: ~/
  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 方法专门干这事。

热推产品

  • ActiveReport... 强大的.NET报表设计、浏览、打印、转换控件,可以同时用于WindowsForms谀坔攀戀Forms平台下......
  • AnyChart AnyChart使你可以创建出绚丽的交互式的Flash和HTML5的图表和仪表控件。可以用于仪表盘的创......
首页 | 新闻中心 | 产品中心 | 技术文档 | 友情连接 | 关于磐岩 | 技术支持中心 | 联系我们 | 帮助中心 Copyright-2006 ComponentCN.com all rights reserved.重庆磐岩科技有限公司(控件中国网) 版权所有 电话:023 - 67870900 传真:023 - 67870270 产品咨询:sales@componentcn.com 渝ICP备12000264号 法律顾问:元炳律师事务所 重庆市江北区塔坪36号维丰创意绿苑A座28-5 邮编:400020
在线客服
在线客服系统
在线客服
在线客服系统