import java.net.*; |
/** |
* 获取本机计算机名和ip地址 |
*/ |
class WhatMachine { |
public static void main(String args[]) throws Exception { |
InetAddress myAddress = InetAddress.getLocalHost(); |
System.out.println(myAddress); |
} |
} |