How to determine wifi network interface name in java?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Try: NetworkInterface.getNetworkInterfaces(); which will return all the interfaces present on your machine. |
|||
|
Can you specify? Do you want the SSID of the connected network? Or the name of the network adapters? I provided an example to get the name of all network interfaces.
If you only want to select the WLAN Interface, maybe you have to do this via JNI, otherwise you could check the name for occurrences of "wlan" (like eth0, eth1 and so on). I don't recommend to rely only on this naming convention.
|
||||
|
If you're after the Wi-Fi interface and only the Wi-Fi interface, then parsing /proc/net/wireless is the way to go on Android:
|
|||
|
|
