本文介绍了如何使用mvc 3反编译chm文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用mvc 3反编译chm文件

How to decompile chm file using mvc 3

推荐答案

引用:

反编译命令是HTML帮助可执行程序的一部分( Hh.exe)

The decompile command is part of the HTML Help executable program (Hh.exe)





在这里你可以找到说明: []





Here you'll find instructions: Open CHM (help file) in C#[^]

Quote:

反编译CHM文件



一样容易在命令提示符下执行以下命令。



Decompiling a CHM file

Is as easy as executing below command in the command prompt.

hh.exe -decompile <target-folder-for-decompiled-content> <source-chm-file></source-chm-file></target-folder-for-decompiled-content>





例如:





For Example:

hh.exe -decomplie C:\foo\helpchmextracted help.chm





执行上述命令后,您应该在 C:\ foo \helpchmextracted 文件夹中找到反编译内容。



After executing the above command you should find the decompiled content in the C:\foo\helpchmextracted folder.


这篇关于如何使用mvc 3反编译chm文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 05:34