从 HTM 文件生成 MHT
我的磁盘中有一个 htm 页面 (C:\pages\page1.htm)。
此页面链接 CSS 和 gif (C:\pages\img\img1.gif, c:\pages\css\css1.css)。
如何生成 MHT 文件?仅使用 C# .NET 进行管理。
I have a htm page in my disk (C:\pages\page1.htm).
This page link CSS and gif (C:\pages\img\img1.gif, c:\pages\css\css1.css).
How can I generate MHT file ?? Only using C# .NET managed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
MHT 基本上是一个 MIME 文件,这意味着它的结构非常类似于电子邮件。顶部有一些全局标头(即
Content-Type
,它也指定内容边界)。存档中的每个文件均由内容边界分隔,并具有自己的一组标头。请参阅此页面的 MHT 表示 - 大部分内容都是不言自明的。MHT is basically a MIME file, which means it's structured very much like an e-mail. There are some global headers at the top (namely, the
Content-Type
, which also specifies the content boundary). Each file in the archive is separated by the content boundary, and has its own set of headers. See a MHT representation of this page - much of the content is self-explanatory.为什么需要这个? MHT 是仅适用于 IE 的网页存储格式。
然而,如果您打开一个 MHT,您很快就会知道如何手工创建它。
Why do you need this? MHT is IE-only format of storing webpages.
However, if you will open one MHT, you will quickly get an idea how to create it by hands.
Windows 7 包括记录步骤并生成 mht 文件。
我认为 mht 文件可以有多种用途。我需要生成 mht 文件(一个 mht 文件),用于创建多个 htm 文件、css、jpg、wmv...
谢谢
Windows 7 includes Recording Steps and generate mht file.
I thinks mht file can have several use. I need generate mht file (one mht file), for create several htm files, css , jpg, wmv...
thanks