当前位置: 首页 > 工具软件 > Java Sockets > 使用案例 >

java sockets_Java Sockets

田昊天
2023-12-01

软件简介

Java Sockets is a class library implementing a subset of the C++ Sockets

library, and is based on SUN’s java.nio.* non-blocking network i/o classes.

示例代码

public class MySocket extends TcpSocket

{

public MySocket(SocketHandler h)

{

super(h);

SetLineProtocol();

}

public void OnConnect()

{

Send("GET / HTTP/1.0\r\n" +

"Host: www.alhem.net\r\n" +

"\r\n");

}

public void OnLine(String line)

{

System.out.println(line);

}

public static void main(String[] args)

{

StdLog log = new StdoutLog();

SocketHandler h = new SocketHandler(log);

MySocket sock = new MySocket(h);

sock.Open( "www.alhem.net", 80 );

h.Add( sock );

boolean quit = false;

while (!quit) // forever

{

h.Select(1, 0);

}

}

}

 类似资料:

相关阅读

相关文章

相关问答