Copy data from an SD card to a raw file
How might I copy data from an SD card to a开发者_开发百科 raw file?
Use ADB tool to pull data from the device/emulator. See the PUSH and PULL operations.
Example:
adb pull /sdcard/test.txt test.txt
Pull pulls a file from your Android device to your desktop computer.
精彩评论