歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

導入導出Android手機文件

1、獲得root權限:adb root;

2、設置/system為可讀寫:adb remount;

3、將文件復制到PC:adb pull 手機文件目錄 <PC機上文件名>;

例:adb pull /system/etc/hosts D://hosts

4、現在就可以修改導出的文件了;

5、將PC機上文件復制到手機:adb push <PC機上文件名> 手機文件目錄;

例:adb push d://hosts /system/etc/hosts

如果要查看是否修改成功,可以在PC上執行adb shell,運行cat 手機文件目錄;或者在手機上運行cat 手機文件目錄;

例:cat /system/etc/hosts

Copyright © Linux教程網 All Rights Reserved