public static Set<String> localIpv4s() {
Enumeration<NetworkInterface> networkInterfaces = null;
try {
networkInterfaces = NetworkInterface.getNetworkInterfaces();
} catch (SocketException e) {
throw new UtilException(e.getMessage(), e);
}
if(networkInterfaces == null) {
throw new UtilException("Get network interface error!");
}
final HashSet<String> ipSet = new HashSet<String>();
while(networkInterfaces.hasMoreElements()) {