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那边会有问题

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐