Socket
2024-05-22 16:43:44 3 举报
AI智能生成
socket 套接字
作者其他创作
大纲/内容
连接服务器
new Socket(host,port)
Socket socket = new Socket();
socket.connet(new InetSocketAddress(host,port),timeout)
socket.connet(new InetSocketAddress(host,port),timeout)
实现服务器
ServerSocket s =new ServerSocket(port);
Socket ins = s. accept();
Socket ins = s. accept();
半关闭
将输出流设为“结束流” socket.shutdownOutput();
将输入流设为“结束流” socket.shutdownInput();
可中断套接字
SocketChannel channel = SocketChannel.open(new InetSocketAddress(host,port))
URL 和 URI
URL
创建URL 对象 : URL url = new URL(urlString);
获取资源:InputStream inStream = url.openStream();
URLConnection
可以获取更多资源
可以获取更多资源
创建UrlConnection对象: UrlConnection connection = url.openConnection();
连接远程资源: connection.connect();
0 条评论
下一页