当前位置: 首页 > news >正文

企业网站源码搜一品资源网网站 网站 建设

企业网站源码搜一品资源网,网站 网站 建设,开化网站建设,网站目录管理模板下载大家应该知道 .NET异常 本质上就是一个 Object 对象#xff0c;也就是说只要你执行了 new XXException() 语句#xff0c;那么它就会分配到 GC Heap 上。这也就意味着#xff0c;如果你有一个进程的dump文件#xff0c;那你就可以从dump中导出程序最近都抛了什么异常#… 大家应该知道 .NET异常 本质上就是一个 Object 对象也就是说只要你执行了 new XXException() 语句那么它就会分配到 GC Heap 上。这也就意味着如果你有一个进程的dump文件那你就可以从dump中导出程序最近都抛了什么异常换句话说只要这些异常没有被 GC 回收你都可以给它找出来。实现起来很简单只要在 windbg 中输入如下命令即可。0:015 !dumpheap -type Exception ------------------------------ Heap 0 Address       MT     Size 02ea6b0c 79330a80       72 02ea75f0 7930eab4       76 … 06f57aa4 7930eab4       76 06f5829c 7930eab4       76 06f58a94 7930eab4       76 06f5928c 7930eab4       76 06f59a84 7930eab4       76 06f5a27c 7930eab4       76 06f5aa74 7930eab4       76 06f5b26c 7930eab4       76 06f5ba64 7930eab4       76 06f5c25c 7930eab4       76 06f5ca54 7930eab4       76 06f5d24c 7930eab4       76 total 319 objects ------------------------------ total 656 objects Statistics:MT    Count    TotalSize Class Name 79333dc0        1           12 System.Text.DecoderExceptionFallback 79333d7c        1           12 System.Text.EncoderExceptionFallback 793172f8        2           64 System.UnhandledExceptionEventHandler 79330c30        1           72 System.ExecutionEngineException 79330ba0        1           72 System.StackOverflowException 79330b10        1           72 System.OutOfMemoryException 79330a80        1           72 System.Exception 79330cc0        2          144 System.Threading.ThreadAbortException 7930eab4      646        49096 System.IO.DirectoryNotFoundException Total 656 objects如果你想看某一个具体异常的详细信息可以使用命令 !pe 02ea6b0c 。!pe 02ea6b0c Exception object: 02ea6b0c Exception type: System.Exception Message: The email entered is not a valid email address InnerException: none StackTrace (generated):SP       IP       Function024AF2C8 0FE3125E App_Code_da2s7oyo!BuggyMail.IsValidEmailAddress(System.String)0x76024AF2E8 0FE31192 App_Code_da2s7oyo!BuggyMail.SendEmail(System.String, System.String)0x4aStackTraceString: none HResult: 80131500 There are nested exceptions on this thread. Run with -nested for details那现在问题来了我想看所有异常的详细信息怎么办呢人肉一个一个的用 !pe 命令去执行那将会多恶心。。。所以友好的方式就是写脚本去提速这里我使用 .foreach 命令。.foreach (ex {!dumpheap -type Exception -short}){.echo ********************************;!pe ${ex} }上面我用了一个 -short 参数目的就是只输出 address 地址方便脚本遍历然后将迭代项送入 !pe 输出结果如下0:015 .foreach (ex {!dumpheap -type Exception -short}){.echo ********************************;!pe ${ex} } ******************************** Exception object: 02ea6b0c Exception type: System.Exception Message: The email entered is not a valid email address InnerException: none StackTrace (generated):SP       IP       Function024AF2C8 0FE3125E App_Code_da2s7oyo!BuggyMail.IsValidEmailAddress(System.String)0x76024AF2E8 0FE31192 App_Code_da2s7oyo!BuggyMail.SendEmail(System.String, System.String)0x4aStackTraceString: none HResult: 80131500 There are nested exceptions on this thread. Run with -nested for details ******************************** Exception object: 02ea75f0 Exception type: System.IO.DirectoryNotFoundException Message: Could not find a part of the path c:\idontexist\log.txt. InnerException: none StackTrace (generated):SP       IP       Function024AF044 792741F2 mscorlib_ni!System.IO.__Error.WinIOError(Int32, System.String)0xc2024AF0A0 792EB22B mscorlib_ni!System.IO.FileStream.Init(System.String, System.IO.FileMode, System.IO.FileAccess, Int32, Boolean, System.IO.FileShare, Int32, System.IO.FileOptions, SECURITY_ATTRIBUTES, System.String, Boolean)0x48b024AF198 792EA882 mscorlib_ni!System.IO.FileStream..ctor(System.String, System.IO.FileMode, System.IO.FileAccess, System.IO.FileShare, Int32, System.IO.FileOptions)0x42024AF1C0 7927783F mscorlib_ni!System.IO.StreamWriter.CreateFile(System.String, Boolean)0x3f024AF1D4 792777DB mscorlib_ni!System.IO.StreamWriter..ctor(System.String, Boolean, System.Text.Encoding, Int32)0x3b024AF1F4 797EE19F mscorlib_ni!System.IO.StreamWriter..ctor(System.String)0x1f024AF204 0FE31325 App_Code_da2s7oyo!Utility.WriteToLog(System.String, System.String)0x5dStackTraceString: none HResult: 80070003 There are nested exceptions on this thread. Run with -nested for details ******************************** Exception object: 02ea7de8 Exception type: System.IO.DirectoryNotFoundException Message: Could not find a part of the path c:\idontexist\log.txt. InnerException: none StackTrace (generated):SP       IP       Function024AEF60 792741F2 mscorlib_ni!System.IO.__Error.WinIOError(Int32, System.String)0xc2024AEFBC 792EB22B mscorlib_ni!System.IO.FileStream.Init(System.String, System.IO.FileMode, System.IO.FileAccess, Int32, Boolean, System.IO.FileShare, Int32, System.IO.FileOptions, SECURITY_ATTRIBUTES, System.String, Boolean)0x48b024AF0B4 792EA882 mscorlib_ni!System.IO.FileStream..ctor(System.String, System.IO.FileMode, System.IO.FileAccess, System.IO.FileShare, Int32, System.IO.FileOptions)0x42024AF0DC 7927783F mscorlib_ni!System.IO.StreamWriter.CreateFile(System.String, Boolean)0x3f024AF0F0 792777DB mscorlib_ni!System.IO.StreamWriter..ctor(System.String, Boolean, System.Text.Encoding, Int32)0x3b024AF110 797EE19F mscorlib_ni!System.IO.StreamWriter..ctor(System.String)0x1f024AF120 0FE31325 App_Code_da2s7oyo!Utility.WriteToLog(System.String, System.String)0x5dStackTraceString: none HResult: 80070003 There are nested exceptions on this thread. Run with -nested for details当然你也可以打印出当前异常的内部异常配上一个 -nest 参数即可。.foreach (ex {!dumpheap -type Exception -short}){.echo ********************************;!pe –nested ${ex} }
http://www.pierceye.com/news/572891/

相关文章:

  • 成都金牛网站建设公司高端网站配色
  • 做喜报的网站设计师的工作内容
  • 济南网站建设工作wordpress 资讯
  • 网站调用数据库平台公司名单
  • 移动网站怎么做成都设计公司名字
  • 杭州最好的网站设计公司服务器域名解析
  • 做试用网站的原理塘沽网吧开门了吗
  • 网站域名的作用古典网站源码
  • 做直播网站软件有哪些软件涿州网站建设有限公司
  • 易托管建站工具wordpress多个single
  • 建一个电影网站多大 数据库半厘米wordpress
  • 住房和建设厅网站首页网站源码怎么写
  • 宁波新亚建设公司网站简单网站建设
  • 做网站没赚到钱网站后台地址忘记了
  • 备案网站公共查询安阳县
  • wordpress 超级管理员seo优化网络公司
  • 商务推广网站宝塔做网站
  • 我想建一个网站怎么建python做的大型网站
  • 为网站设计手机版wordpress怎样比较安全
  • 网站优化方式重庆建设网站哪家专业
  • php做网站基本流程旅游网站论文
  • 网站前期准备网页制作需要学多久
  • 广园路建设公司网站建app网站要多少钱
  • 网站域名是什么东西wordpress农历插件
  • 专业网站建设公司首选公司wordpress fruitful
  • 微博wap版登录入口seo 网站标题长度
  • 网站面包屑导航设计即位置导航局域网安装wordpress
  • 泰安网站建设xtempire国家开放大学网站界面设计
  • 绘制网站结构图建站公司售后服务
  • 漂亮的博客网站模板装修公司网站开发