zl程序教程

您现在的位置是:首页 >  后端

当前栏目

Server.MapPath相关

server 相关 MapPath
2023-06-13 09:12:30 时间

大家好,又见面了,我是你们的朋友全栈君。

如果你从Page类继承的类中执行这条语句,才可以简单地使用 DataBase = Server.MapPath(“data.mdb”); 否则写全命名空间:System.Web.HttpContext.Current.Server.MapPath();

总注:Server.MapPath获得的路径都是服务器上的物理路径,也就是常说的绝对路径 1、Server.MapPath(“/”) 注:获得应用程序根目录所在的位置,如 C:\Inetpub\wwwroot\。 2、Server.MapPath(“./”) 注:获得所在页面的当前目录,等价于Server.MapPath(“”)。 3、Server.MapPath(“../”) 注:获得所在页面的上级目录。 4、Server.MapPath(“~/”) 注:获得当前应用级程序的目录,如果是根目录,就是根目录,如果是虚拟目录,就是虚拟目录所在的位置,如C:\Inetpub\wwwroot\Example\。

在多线程里面使用HttpContext.Current,HttpContext.Current是得到null的. 所以在线程调用方法,方法中类里面的System.Web.HttpContext.Current.Server.MapPath() 获取不到对象。

应该这样用:

public static string MapPath(string strPath) { if (HttpContext.Current != null) { return HttpContext.Current.Server.MapPath(strPath); } else //非web程序引用 { strPath = strPath.Replace(“/”, “\\”); if (strPath.StartsWith(“\\”)) { //strPath = strPath.Substring(strPath.IndexOf(‘\\’, 1)).TrimStart(‘\\’); strPath = strPath.TrimStart(‘\\’); } return System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, strPath); } }

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/158049.html原文链接:https://javaforall.cn