к wi-fi точке доступа?
Где получить?
public void allip() throws IOException { String subnet="192.168.1"; int timeout = 100; for (int i = 1; i < 255; i++) { String host = subnet + "." + i; if (InetAddress.getByName(host).isReachable(timeout)) { Log.d("ip", host + " найден"); } } }
Обсуждают сегодня