我想构建一个用户应用程序,它将通过INET套接字系列与内核部分进行交互。 JAVA是否支持INET套接字系列?
答案 0 :(得分:2)
是java
支持INET我希望以下程序对您有所帮助
import java.net.*;
class InetAddressTest
{
public static void main(String args[]) throws
UnknownHostException {
InetAddress Address = InetAddress.getLocalHost();
System.out.println(Address);
Address = InetAddress.getByName("starwave.com");
System.out.println(Address);
InetAddress SW[] = InetAddress.getAllByName("www.nba.com");
for (int i=0; i<SW.length; i++)
System.out.println(SW[i]);
}
}