public class Main {
public static void main(String[] args) throws IOException {
InetAddress myIp = null;
try {
myIp = InetAddress.getLocalHost();
} catch (UnknownHostException ex) {
System.out.println("Exception cought.");
System.exit(0);
}
System.out.println(myIp);
}
}
ワイヤレスがオフのときに IP アドレスが異なるのはなぜですか?という簡単な質問があります。
まだ同じコンピューターなのに、なぜ変わるのでしょうか? (これは固有の番号ではありませんか?)