Android下修改hosts文件

1、ADB 命令行替换法

为方便操作,可以将压缩包中的adb[1.  adb(Android Debug Bridge)是Android提供的一个通用的调试工具,借助这个工具,我们可以管理设备或手机模拟器的状态。]程序连文件夹解压缩到C盘。

步骤如下:

1、获得root权限:adb root
2、设置/system为可读写:adb remount
3、将hosts文件复制到PC:将hosts文件复制到PC:adb pull /system/etc/hosts <PC机上文件名>
4、修改PC机上文件
5、将PC机上文件复制到手机:adb push <PC机上文件名> /system/etc/hosts

如果要查看是否修改成功,可以在PC上执行adb shell,运行cat /system/etc/hosts;或者在手机上运行cat /system/etc/hosts。

你可能感兴趣的:(Android下修改hosts文件)