在android 4.0.2..4.4.4上运行的代码存在一些问题,但在Android 5上并没有真正起作用,我不知道为什么。基本上,下面的代码允许设置新WiFi的IP分配类型:STATIC或DHCP。我使用的代码完全包含在这个答案中:https://stackoverflow.com/a/10309323/876360
我会尝试使用输出信息将最重要的代码放在这里。
...
WifiConfigurator.setIpAssignment("STATIC", wifiConf);
...
wifiConf是
public static WifiConfiguration getCurrentWiFiConfiguration(Context context) {
WifiConfiguration wifiConf = null;
ConnectivityManager connManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo networkInfo = connManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
if (networkInfo.isConnected()) {
final WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
final WifiInfo connectionInfo = wifiManager.getConnectionInfo();
if (connectionInfo != null && !TextUtils.isEmpty(connectionInfo.getSSID())) {
List<WifiConfiguration> configuredNetworks = wifiManager.getConfiguredNetworks();
if(configuredNetworks != null){
for (WifiConfiguration conf : configuredNetworks) {
if (conf.networkId == connectionInfo.getNetworkId()) {
wifiConf = conf;
break;
}
}
}
}
}
return wifiConf;
}
因此WifiConfigurator.setIpAssigment()
会调用下一个代码:
public static void setIpAssignment(String assign, WifiConfiguration wifiConf)
throws SecurityException, IllegalArgumentException, NoSuchFieldException, IllegalAccessException {
setEnumField(wifiConf, assign, "ipAssignment");
}
public static void setEnumField(Object obj, String value, String name)
throws SecurityException, NoSuchFieldException, IllegalArgumentException, IllegalAccessException {
Log.d("myApp", obj.getClass().toString());
Field f = obj.getClass().getField(name);
f.set(obj, Enum.valueOf((Class<Enum>) f.getType(), value));
}
但由于某种原因,无法找到“ipAssignment”字段:
11-30 12:40:54.343 5941-5941/com.myApp D/myApp﹕ class android.net.wifi.WifiConfiguration
11-30 12:40:54.344 5941-5941/com.myApp D/myApp﹕ Can't update network configuration. java.lang.NoSuchFieldException: ipAssignment
at java.lang.Class.getField(Class.java:1048)
at com.myApp.WifiConfigurator.setEnumField(WifiConfigurator.java:141)
at com.myApp.WifiConfigurator.setIpAssignment(WifiConfigurator.java:25)
at com.myApp.WifiConfigurator.updateWifiNetwork(WifiConfigurator.java:220)
at com.myApp.ui.MainScreen.onAsyncTaskCompleted(MainScreen.java:251)
at com.myApp.myAPI$UpdateIPTask.onPostExecute(myAPI.java:257)
at com.myApp.myAPI$UpdateIPTask.onPostExecute(myAPI.java:194)
at android.os.AsyncTask.finish(AsyncTask.java:632)
at android.os.AsyncTask.access$600(AsyncTask.java:177)
at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java:645)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5221)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
起初,我认为谷歌改变了该字段的名称。然后我检查了Android L preview source code,字段就在那里。我很困惑为什么会这样。
更新
感谢Matiash的一些输入,我能够更新ipAssignment类型,但我无法更新DNS。要更新DNS,ipAssigment应该是静态的。根据{{3}}谷歌停止使用LinkProperties进行静态配置,他们现在使用StaticIpConfiguration类。
所以我做的是:
public static void setDNS(InetAddress dns1, InetAddress dns2, WifiConfiguration wifiConf)
throws SecurityException, IllegalArgumentException, NoSuchMethodException, InvocationTargetException,
NoSuchFieldException, IllegalAccessException {
Object linkProperties = null;
ArrayList<InetAddress> mDnses;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
staticIpConf = wifiConf.getClass().getMethod("getStaticIpConfiguration").invoke(wifiConf);
mDnses = (ArrayList<InetAddress>) getDeclaredField(staticIpConf, "dnsServers");
}
else{
linkProperties = getField(wifiConf, "linkProperties");
mDnses = (ArrayList<InetAddress>) getDeclaredField(linkProperties, "mDnses");
}
mDnses.clear();
mDnses.add(dns1);
mDnses.add(dns2);
}
public static Object getDeclaredField(Object obj, String name)
throws SecurityException, NoSuchFieldException,
IllegalArgumentException, IllegalAccessException {
Field f = obj.getClass().getDeclaredField(name);
f.setAccessible(true);
Object out = f.get(obj);
return out;
}
我在错误日志中看到了下一个:
12-22 09:00:49.854 25815-25815/com.myapp D/myapp﹕ Can't update network configuration. java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String java.lang.Object.toString()' on a null object reference
at com.myapp.WifiConfigurator.getDeclaredField(WifiConfigurator.java:245)
at com.myapp.WifiConfigurator.setDNS(WifiConfigurator.java:78)
at com.myapp.WifiConfigurator.updateWifiNetwork(WifiConfigurator.java:356)
当我打电话时,我的猜测staticIpConfiguration
不存在。我必须以某种方式初始化它。
有任何想法如何更新DNS?
答案 0 :(得分:6)
虽然L预览中仍然存在ipAssignment
字段(至少是grepcode中的版本),但它不在发布的版本中,您可以在"master" branch of the source code或在Github mirror。
Enum定义和字段现在都在内部对象中,类型为IpConfiguration
(也是新的)。这些是使用反射访问无证水域的危险......:)
但是,调整代码以通过反射访问它并将其设置在那里很简单:
public static void setIpAssignment(String assign, WifiConfiguration wifiConf)
throws SecurityException, IllegalArgumentException, NoSuchFieldException, IllegalAccessException, InvocationTargetException, NoSuchMethodException {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Object ipConfiguration = wifiConf.getClass().getMethod("getIpConfiguration").invoke(wifiConf);
setEnumField(ipConfiguration, assign, "ipAssignment");
} else {
setEnumField(wifiConf, assign, "ipAssignment");
}
}
此代码&#34;工作&#34; (从某种意义上说它没有例外)但我还没有进一步测试它。
有关更详细的解决方案,请参阅How to configure a static IP address, netmask, gateway, DNS programmatically on Android 5.x (Lollipop) for Wi-Fi connection。