{eval=Array;=+count(Array);}
import java.net.InetAddress; import java.net.UnknownHostException; public class GetIPAddress { public static void main(String[] args) { try { InetAddress ip = InetAddress.getLocalHost(); System.out.println("IP address of this machine: " + ip.getHostAddress()); } catch (UnknownHostException e) { System.out.println("Unable to get IP address of this machine"); e.printStackTrace(); } } }这个代码片段中,我们使用`InetAddress.getLocalHost()`方法获取本地主机的IP地址。然后,我们使用`getHostAddress()`方法来获取IP地址的字符串表示形式,并将其打印到控制台上。 希望这可以帮助到你!
1
回答0
回答0
回答0
回答0
回答0
回答0
回答0
回答0
回答0
回答