在D7里怎么使用那个TcpServer呀?Internet板上那个东西(20分)

  • 主题发起人 主题发起人 serenaiad
  • 开始时间 开始时间
S

serenaiad

Unregistered / Unconfirmed
GUEST, unregistred user!
var FilStm:TFileStream;
Buf:array[0..2000] of char;
begin
While ( Not self.ClientSocket.WaitForData(30000)) do //这一行老出错,大家给看看
Begin
self.ClientSocket.ReceiveBuf(buf,2000);
ShowMessage(buf);
FilStm:=TFileStream.Create('c:/csdn.xml',fmOpenRead);
self.ClientSocket.Sendln('HTTP/1.1 200 OK'+#13#10+'Contetn-Type: text/xml'+#13#10);
Self.ClientSocket.SendStream(FilStm);
FilStm.Free;
End;
{ Place thread code here }
end;
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
746
import
I
I
回复
0
查看
843
import
I
后退
顶部