Angelo Lee's Blog
This is my kingdom .If i don't fight for it ,who will ?
摘要: PE 的意思就是 Portable Executable(可移植的执行体)。PE文件结构的总体层次分布图:--------------|DOS MZ Header ||--------------||DOS Stub ||--------------||PE Header ||--------------||Section Table ||--------------||Section 1 ||--------------||Section 2 ||--------------||Section ... ||--------------||Section n |--------------一、 阅读全文
posted @ 2012-11-16 12:35 Angelo Lee 阅读(292) 评论(1) 推荐(0) 编辑
摘要: /// <summary> /// 转全角(SBC case) /// </summary> /// <param name="input">任意字符串</param> /// <returns>全角字符串</returns> public static string ToSBC(this string input) { char[] c = input.ToCharArray(); for (int i = 0; i < c.Length; i++) ... 阅读全文
posted @ 2012-11-16 12:20 Angelo Lee 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 1.IntroductionInternet 软件分发单位是“软件包”,它由包含.INF文件或软件分发.OSD文件(或两者都包括)的.CAB文件所组成。一个分发单位也可以包含软件组件,如 ActiveX 控件(.OCX)、.DLL文件、.EXE文件、Java类文件或小程序。当Web页上OBJECT元素的CODEBASE特性引用包含.INF文件的. CAB文件时,Internet Explorer将自动把.CAB文件作为软件分发单位下载并安装,每次访问时还会自动检测版本并进行更新。INF文件是一个文本文件,指定运行控件所需要下载或者呈交的文件(比如.DLL或者其它.OCX)。一个.INF文件就捆 阅读全文
posted @ 2012-11-16 12:15 Angelo Lee 阅读(375) 评论(0) 推荐(0) 编辑