forked from b3601993/CodeTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetIP.java
45 lines (36 loc) · 1.17 KB
/
GetIP.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.zhangjikai.utils;
import java.net.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Enumeration;
import java.util.List;
/**
* 获得电脑的ip地址, 可能获得多个
* Created by zhangjk on 2016/1/19.
*/
public class FtUtils {
public static List<String> getIps() {
List<String> ipList = new ArrayList<>();
Enumeration nets = null;
try {
nets = NetworkInterface.getNetworkInterfaces();
for (NetworkInterface netint : (List<NetworkInterface>) Collections.list(nets)) {
Enumeration inetAddresses = netint.getInetAddresses();
for (InetAddress inetAddress : (List<InetAddress>) Collections.list(inetAddresses)) {
if (inetAddress instanceof Inet4Address)
ipList.add(inetAddress.getHostAddress());
}
}
} catch (SocketException e) {
ipList.add("127.0.0.1");
e.printStackTrace();
}
for(String s : ipList) {
System.out.println(s);
}
return ipList;
}
public static void main(String[] args) {
getIps();
}
}