使用Delphi读取网络上的txt和html文件
可以使用两种方法:
1.下载文件,然后进行读取
下载文件的Delphi代码可以参考:
http://www.delphibbs.com/delphibbs/dispq.asp?lid=3514953
2.使用TIdHTTP控件直接读取:
使用TIdHTTP的Get方法
读取http://192.168.198.1/a.txt,可以这样写:
var
IdHTTP1: TIdHTTP;
string x :=IdHTTP1.Get('http://192.168.198.1/a.txt');