H
huangwei8123
Unregistered / Unconfirmed
GUEST, unregistred user!
问题如上,请问有什么解决的办法吗?
delphi版本7.0,自带INDY控件。
//-------------------------------------------------------------
在网页地址栏中输入:http://p1.930t.com/FindLRC.asp?LRCFile=倩女幽魂 - 张国荣.lrc可以产生结果
但使用下面代码就不行了~
不过当参数中没有中文的时候又可以了。
procedure TForm1.Button1Click(Sender: TObject);
var
GetURL : wideString;
Temp : String;
begin
GetURL := 'http://p1.930t.com/FindLRC.asp?LRCFile=倩女幽魂 - 张国荣.lrc';
//GetURL := 'http://p1.930t.com/FindLRC.asp?LRCFile=abc.lrc';
try
Temp := IdHTTP1.get(GetURL);//获取LRC 文件-------
Memo1.Lines.Add(Temp)
except
ShowMessage('not get File.....');
end;
end;
delphi版本7.0,自带INDY控件。
//-------------------------------------------------------------
在网页地址栏中输入:http://p1.930t.com/FindLRC.asp?LRCFile=倩女幽魂 - 张国荣.lrc可以产生结果
但使用下面代码就不行了~
不过当参数中没有中文的时候又可以了。
procedure TForm1.Button1Click(Sender: TObject);
var
GetURL : wideString;
Temp : String;
begin
GetURL := 'http://p1.930t.com/FindLRC.asp?LRCFile=倩女幽魂 - 张国荣.lrc';
//GetURL := 'http://p1.930t.com/FindLRC.asp?LRCFile=abc.lrc';
try
Temp := IdHTTP1.get(GetURL);//获取LRC 文件-------
Memo1.Lines.Add(Temp)
except
ShowMessage('not get File.....');
end;
end;