首页 > 编程 > .NET > 正文

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

2024-07-10 13:10:49
字体:
来源:转载
供稿:网友


收集最实用的网页特效代码!

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

    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站点下的绝对路径转换为虚拟路径
/**//// <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 方法专门干这事

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表