怎样用Delphi 来读取网页特定标签里的字符串
我用Delphi7 内嵌网页(WebBrowser控件),打开一个网页,我想通过程序得到指定网页元素特征里的文字字符串.通过网页分析软件得知:tag:FONT&...
我用Delphi 7 内嵌网页(WebBrowser控件),打开一个网页,我想通过程序得到指定网页元素特征里的文字字符串.通过网页分析软件得知:tag:FONT&txt:雍正五年&index:1 我想用Delphi程序来读取“雍正五年”(注:里面的字符是随机的) 请问要怎样写代码?
展开
展开全部
var
doc,frm: IHTMLDocument2;
iw: IWebbrowser2;
//userinputelement: IHTMLInputElement;
//str: string;
strlist: TStringList;
begin
//进行地图扫描
doc := WebBrowser1.Document as IHTMLDocument2;
iw := GetFrame(1);
frm := iw.Document as IHTMLDocument2;
strlist := TStringList.Create;
Memo1.Lines.Clear;
Memo1.Lines.Add(frm.body.innerHTML);
Memo1.Lines.SaveToFile('1.txt');
strlist.LoadFromFile('1.txt');
//SplitMapxy(strlist);
//FreeAndNil(strlist);
end;
然后从字符串中分解出来
doc,frm: IHTMLDocument2;
iw: IWebbrowser2;
//userinputelement: IHTMLInputElement;
//str: string;
strlist: TStringList;
begin
//进行地图扫描
doc := WebBrowser1.Document as IHTMLDocument2;
iw := GetFrame(1);
frm := iw.Document as IHTMLDocument2;
strlist := TStringList.Create;
Memo1.Lines.Clear;
Memo1.Lines.Add(frm.body.innerHTML);
Memo1.Lines.SaveToFile('1.txt');
strlist.LoadFromFile('1.txt');
//SplitMapxy(strlist);
//FreeAndNil(strlist);
end;
然后从字符串中分解出来
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询