3
我想在本文中提到的使用NetworkUtils中的rundhcp()函數。Android NetworkUtils
How do you get the current DNS servers for Android?
我需要讓DHCP對象移動連接。但是NetworkUtils類似乎不是sdk的一部分。它也沒有在開發者文檔中提及。
如何在我的應用程序中包含和使用NetworkUtils類。
我想在本文中提到的使用NetworkUtils中的rundhcp()函數。Android NetworkUtils
How do you get the current DNS servers for Android?
我需要讓DHCP對象移動連接。但是NetworkUtils類似乎不是sdk的一部分。它也沒有在開發者文檔中提及。
如何在我的應用程序中包含和使用NetworkUtils類。
也許這就夠了?
WifiManager wifiManager = (WifiManager) mContext.getSystemService(Context.WIFI_SERVICE);
WifiInfo wifiInfo = wifiManager.getConnectionInfo();
DhcpInfo dhcp = wifiManager.getDhcpInfo();