zoukankan      html  css  js  c++  java
  • ASP.NET多线程下使用HttpContext.Current为null解决方案 2015-01-22 15:23 349人阅读 评论(0) 收藏

    问题一:多线程下获取文件绝对路径

      当我们使用HttpContext.Current.Server.MapPath(strPath)获取绝对路径时HttpContext.Current为null,解决办法如下: 

          /// 
            /// 获得当前绝对路径
            /// 
            /// 指定的路径
            /// 绝对路径
            public static string GetMapPath(string strPath)
            {
                if (strPath.ToLower().StartsWith("http://"))
                {
                    return strPath;
                }
                if (HttpContext.Current != null)
                {
                    return HttpContext.Current.Server.MapPath(strPath);
                }
                else //非web程序引用
                {
                    strPath = strPath.Replace("/", "\");
                    if (strPath.StartsWith("\") || strPath.StartsWith("~"))
                    {
                        strPath = strPath.Substring(strPath.IndexOf('\', 1)).TrimStart('\');
                    }
                    return System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, strPath);
                }
            }

    问题二:多线程下获取缓存问题

     多线程下使用HttpContext.Current.Cache.Get(key)获取缓存时HttpContext.Current为null,解决办法如下:

    HttpRuntime.Cache.Get(key);

    从MSDN上的解释可以看出,HttpRuntime.Cache是应用程序级别的,而HttpContext.Current.Cache是针对当前WEB上下文定义的。

    然而,实际上,这二个都是调用的同一个对象,不同的是:HttpRuntime下的除了WEB中可以使用外,非WEB程序也可以使用。

    而HttpContext则只能用在WEB中。因此,在可能的情况下,我们尽可能使用HttpRuntime(然而,在不同应用程序之间如何调用也是一个问题)。

    问题三:多线程下使用Html转码问题

    多线程下使用HttpContext.Current.Server.HtmlEncode(Htmlstring)转码HttpContext.Current为null,解决办法如下:

    HttpUtility.HtmlEncode(Htmlstring)

    总之,HttpContext不是万能的,当多线程调用,或是用机器模拟调用时,此时是没有HttpContext上下文的。

    详细讲解可以看下这篇文章 http://www.cnblogs.com/fish-li/archive/2011/08/21/2148640.html#_label4


    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    Java数值类型转换
    认识电脑硬件
    ssh(sturts2_spring_hibernate) 框架搭建之spring
    ssh(sturts2_spring_hibernate) 框架搭建之hibernate2
    ssh(sturts2_spring_hibernate) 框架搭建之hibernate1
    SpringAOP之静态代理
    ssh(sturts2_spring_hibernate) 框架搭建之JPA代替hibernate
    struts之动态方法调用使用通配符
    struts之动态方法调用改变表单action属性
    ssh(sturts2_spring_hibernate) 框架搭建之struts2
  • 原文地址:https://www.cnblogs.com/zhangqs008/p/4687639.html
Copyright © 2011-2022 走看看