Android: 设置wifi设备名

wifi连接AP后,在AP端看到的设备名保存在prop属性

net.hostname 中,可以通过getprop net.hostname查看

通过setprop net.hostname修改

 

默认系统会给一个名字

frameworks/base/services/java/com/android/server/ConnectivityService.java中生成 : // setup our unique device name String id = Settings.Secure.getString(context.getContentResolver(), Settings.Secure.ANDROID_ID); if (id != null && id.length() > 0) { String name = new String("android_").concat(id); SystemProperties.set("net.hostname", name); }  

 

如果需要自己定义,可以注释掉这一段,然后在system.prop中定义 net.hostname=xxxxxx

需要注意的是hostname不能带空格,不然dhcp那边会有问题

 

 

你可能感兴趣的:(Android: 设置wifi设备名)