delphi 保存网页MHT
procedure WB_SaveAs_MHT(WB: TWebBrowser; FileName: TFileName);
var Msg: IMessage; Conf: IConfiguration; Stream: _Stream; URL: Widestring; begin if not Assigned(WB.Document) then Exit; URL := WB.LocationURL; Msg := CoMessage.Create; Conf := CoConfiguration.Create; try Msg.Configuration := Conf; Msg.CreateMHTMLBody(URL, cdoSuppressNone, '', ''); Stream := Msg.GetStream; Stream.SaveToFile(FileName, adSaveCreateOverWrite); finally Msg := nil; Conf := nil; Stream := nil; end; end; (* WB_SaveAs_MHT *) |
procedure TForm1.FormCreate(Sender: TObject);
var f: string; begin f := ExtractFilePath(Application.ExeName) + 'WebDoc.htm'; WebBrowser1.Navigate('file:///C:UsersAdminDesktop新建文件夹WebDoc.htm'); end; |
procedure TForm1.Button1Click(Sender: TObject);
begin WB_SaveAs_MHT(WebBrowser1,'C:UsersAdminDesktop11.mht'); end; |
ADODB_TLB.pas
CDO_TLB.pas