使用adb工具匯出並修改檔案內容

2021-09-27 04:36:41 字數 704 閱讀 7105

1. adb shell 

2. cd sdcard/abc/config/

3. 匯出檔案:adb pull /data/abc/config/

4. start . 開啟當前的檔案位置找到abc.conf檔案

5. 修改內容

6. adb push d:\abc.conf  /data/abc/config/

7. adb shell

8. cat /data/abc/config/abc.conf 檢查配置檔案是否更新

9. sync 儲存一次

執行第6步:adb push d:\abc.conf  /data/abc/config/

若報錯:failed to copy '' to '': is a directory

則應 adb push d:\abc.conf  /data/abc/config/abc.conf

ps:

public static string getrootpath()  else 

return rootpath;

}

由getrootpath()得到的路徑為:/storage/emulated/0/***/***x

對映到真實路徑為:sdcard/***/***

其他:通過ls檢視檔案屬性

單個檔案: ls -l 檔名

全部檔案: ls -l

Adb工具的使用

adb全稱為android debug bridge,即起到android除錯橋的作用。借助adb工具,可以管理裝置或者手機模擬器的狀態,進行手機操作,如安裝軟體 系統公升級 執行shell命令等。adb就是連線android手機與pc機的橋梁,可以在pc端對手機進行全面的操作。開啟windows下...

ADB工具的使用

adb工具就是android debug bridge 安卓除錯橋 tools。它是乙個命令列視窗,用手機通過電腦端與模擬器或者真實裝置互動。在某些特殊的情況下進入不了系統,adb就派上用場。adb是乙個c s架構的應用程式,由三部分組成 執行在pc端的adb client 命令列程式 adb 用於...

MATLAB相機標定的使用並匯出XML檔案

matlab的相機標定工具cameracalibrator位於computer vision toolbox,在命令列輸入cameracalibrator,並回車即可啟動gui介面,視覺化做得很友好,而且要比opencv中的相機標定準確度要高,執行速度要快 自己體會 下面介紹一下如何使用,以及如何將...