在上篇《C#生成CHM文件(入门篇)》中,我们利用微软自带的hhc.exe以编程的方式创建一个CHM文件,而且调用的是一个静态的HMTL文件。

在中篇中,实现以下几个目标
 1.将在线的网页保存为CHM文件
 2.我们将对我们进行编译的CHM文件进行反编译,使用的还是微软自带的一个exe(hh.exe)。
 3.以编程的方式将CHM文件转换为Word

在中篇中,把界面稍微调整了下,如下图

一、将在线的网页保存为CHM文件

曾尝试直接使用网址来编译html文件,结果一直报错,于是就放弃了。现在实现的方法的思想是这样的:先将输入的url地址的网页保存到本地,然后利用上一篇中的方法生成CHM文件。不过经测试,这样的效率还是比较低的,主要的花费在将htm文件下载到本地,如果带宽不够的话,将会很慢,不过总归是种方法,大家如果有更好的解决方案,希望能告诉我。

 
   
  1. HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create(url);  
  2.  HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();  
  3.  StreamReader respStream = new StreamReader(myResp.GetResponseStream(), Encoding.Default);  
  4.  string respStr = respStream.ReadToEnd();  
  5.  respStream.Close();  
  6.  FileStream fs = new FileStream(startPath+@"\test.htm", FileMode.Create, FileAccess.Write);  
  7.  StreamWriter sw = new StreamWriter(fs, Encoding.Default);  
  8.  sw.Write(respStr);  
  9.  sw.Close(); 

思路是将网页保存在本地的,startPath为项目所在路径。 大家可以以http://www.baidu.com/index.htm为例(注意要以htm或html为结尾),测试下,看看能不能正常将百度的首页保存到CHM文件中。效果图是这样的:

二、反编译CHM

反编译CHM的方法同初篇中的利用Process类来进行。

 

 
   
  1. /// <summary>  
  2.         /// 反编译CHM文件  
  3.         /// </summary>  
  4.         /// <param name="CHMFile">CHM文件名</param>  
  5.         /// <returns>返回hhc文件名</returns>  
  6.         /// <remarks>uses the <see cref="DecompileChm"></see></remarks>  
  7.         public string DecompileChm(string CHMFile)  
  8.         {  
  9.             string pathDir = Path.GetDirectoryName(CHMFile);//得到chm文件的绝对路径  
  10.             pathDir = Path.Combine(pathDir, Path.GetFileNameWithoutExtension(CHMFile));  
  11.             return DecompileChm(CHMFile, ref pathDir);  
  12.         }  
  13.         /// <summary>  
  14.         /// 反编译CHM文件  
  15.         /// </summary>  
  16.         /// <param name="CHMFile">CHM文件名</param>  
  17.         /// <param name="FolderToPut">反编译后的文件存放路径</param>  
  18.         /// <returns>返回反编译后的hhc文件名</returns>  
  19.         /// <remarks>使用hh.exe反编译</remarks>  
  20.         public string DecompileChm(string CHMFile, ref string FolderToPut)  
  21.         {  
  22.             if ((!System.IO.File.Exists(CHMFile)))  
  23.             {  
  24.                 throw new ArgumentException(CHMFile+"文件不存在");  
  25.             }  
  26.             if ((!Directory.Exists(FolderToPut)))  
  27.             {  
  28.                 FolderToPut = FolderToPut.Replace(" ""_");