Java网络编程

2017-10-29  本文已影响0人  badcyc

java网络编程

利用Socket和ServerSocket进行通信

 public void connect(SocketAddress host,int timeout)throws IOException//将此套接字连接服务器,并指定一个超时值

public InetAddress getInetAddress()//返回套接字连接地址。

public int getPort()//返回此套接字连接到的远程端口

public int getLocalPort()//返回此套接字绑定到的本地端口

public SocketAddress getRemoteSocketAddress()//返回此套接字连接的端点的地址,如果未连接则返回null


static InetAddress getByAddress(byte[] addr)//在给定原始IP地址的情况下,返回InetAddress对象
static InetAddress getByAddress(String host,byte[]addr)//根据提供的主机名和IP地址创建InetAddress
static InetAddress getByName(String host)//给定主机名的情况下确定主机IP地址
String getHostAddress()//返回IP地址字符串(以文本表现形式)
String getHostName()//返回此Ip地址的主机名

上一篇 下一篇

猜你喜欢

热点阅读