gpt4 book ai didi

delphi - 创造 *。 Mht 文件(网络存档)

转载 作者:行者123 更新时间:2023-12-03 15:30:58 26 4
gpt4 key购买 nike

使用以下函数表示从本地 html 文件生成 Web 存档

function TLessonConstructor2.CreateMHT( const FileName : string):boolean ;
var
oMSG:IMessage;
oConfig: IConfiguration;
sFileName: string;
Stream: _Stream;
begin
//CoInitializeEx(nil, COINIT_APARTMENTTHREADED);
//CoInitialize(nil);
try
Result := false;
sFileName := ChangeFileExt(FileName, '.mht');
DeleteFile(PAnsiChar(sFileName));
try
oConfig := CoConfiguration.Create();
oMSG := CoMessage.Create();
oMSG.Configuration := oConfig;
oMSG.CreateMHTMLBody(FileName,CdoSuppressNone,'','');
Stream:=oMSG.GetStream;
Stream.SaveToFile(sFileName,adSaveCreateOverWrite);
Stream.Cancel;
Stream.Close;
Result := True;
except
on E: Exception do
begin
Result := false;
MessageDlg(E.Message, mtError, [mbOK], 0);
end;
end;
finally
// CoUnInitialize;
Stream:=nil;
oConfig:=nil;
oMSG:=nil;
end;
end;

文件名 - html 的完整路径。

执行oMSG.CreateMHTMLBody(FileName, CdoSuppressNone,'','')后;只要基本过程完成,该文件就会被锁定。但是,处理后应删除该文件。

知道问题出在哪里吗?

最佳答案

创建 HTML 正文需要 URL,因此对于本地文件,请确保前面带有 file:///


CreateMHTMLBody(const URL: WideString; Flags: CdoMHTMLFlags; 
const UserName: WideString; const Password: WideString); safecall;

关于delphi - 创造 *。 Mht 文件(网络存档),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12690331/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com