Android的:如何从三星Galaxy Tab获得数据/ ANR / traces.txt?数据、Tab、Galaxy、Android

2023-09-04 12:48:08 作者:一个人挺好

我的应用程序提供了一个ANR调试时我的三星Galaxy Tab。该设备是可见的DDMS在Eclipse中,我可以浏览与DDMS文件浏览器中的SD卡。但我无法浏览到数据目录(当我点击下拉箭头旁边的这个目录中,它出现在目录中是打开的)。任何提示我如何获取该文件?

My application gives an anr while debugging on my Samsung Galaxy Tab. The device is viewable in DDMS in Eclipse, and I can browse the sdcard with the DDMS file explorer. But I cannot browse into the data directory (when I click the drop down arrow next to this directory, it appears the directory is open). Any tips how I can obtain the file?

推荐答案

您可以使用以下命令获取文件:

You can fetch the file using the following command:

亚行拉/data/anr/traces.txt

adb pull /data/anr/traces.txt

希望这会有所帮助, 旧金山。

Hope this helps, Francisco.