如何找到在Android模拟器的文本文件?模拟器、文本文件、Android

2023-09-07 13:17:37 作者:其实、我只需要一个人来陪

您好我是新来的Andr​​oid。我把文件复制到Android设备仿真器。图像文件是在画廊和音频文件音乐。如何查看在Android设备仿真器中的文本文件。(听说Android不附带文本编辑器形式的堆栈溢出)。我不想打开的文本文件,我需要找到如果文本文件是在器件中。我的文件探索应用程序列表中的SD卡可用的文件。它列出文本文件名也不过在设备模拟器我怎么能找到该文本文件?????

Hi I am new to Android. I push files to Android device emulator. Image files are in Gallery and audio files are in Music. How can I view the text file in the android device emulator.( I heard android doesn’t come with Text Editor form stack overflow). I don’t want to open Text file I need to find if the text file is in the device or not. My file explore application list the available file in the sdcard. It lists the text file name also but in the device emulator how can I find the text file?????

推荐答案

尝试使用从您的命令行下面的命令,并看看是否有帮助:

Try using the following commands from your command line and see if that helps:

1. adb shell (a # prompt opens)
2. ls
3. cd /data/data

现在你可以看到,每一个属于它自己的包/应用程序文件夹列表中。cd到您最感兴趣,看看里面是什么的文件夹。许多应用程序都在这里存放一些其他文件。你要找的文本文件可能是在那里。

now you can see the list of folders that belong each to its own package/application. cd into the folder that interests you most and see what's inside. Many applications store some additional files here. The text file you're looking for could be there.

您仍然可以通过在控制台中写猫[文件名]'查看Android的一个文本文件的内容。

You can still view the contents of a text file in Android by writing 'cat [filename]' in the console.