I want to get available network of the current device, so I firstly get networkinterfaces list:
NetworkInterface.getNetworkInterfaces();
Then, iterate every one:
NetworkInterface intf = en.nextElement();
String name = intf.getName();
Here is the problem. The names of returned value of 'name' are: rmnet_data1, dymmy0, wlan0, rmnet_usb0, intf, lo, p2p0, sit0. (on my device) I want to know what are the meanings of them.