{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(); } } }這個(gè)代碼片段中,我們使用`InetAddress.getLocalHost()`方法獲取本地主機(jī)的IP地址。然后,我們使用`getHostAddress()`方法來獲取IP地址的字符串表示形式,并將其打印到控制臺(tái)上。 希望這可以幫助到你!
1
回答0
回答0
回答0
回答0
回答0
回答0
回答0
回答0
回答0
回答