如何在 Android 手机中查看保存的数据文件
Posted
技术标签:
【中文标题】如何在 Android 手机中查看保存的数据文件【英文标题】:How to see the saved data file in Android phone 【发布时间】:2014-09-15 14:27:05 【问题描述】:我的代码是关于保存数据(文本文件名(hello.txt)中的hello world) 我的代码没有问题并且运行良好......但我在手机中根本找不到我的 hello.txt ! .. 我用文件管理器找到它,但我仍然找不到它 P.S:我的手机没有root
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my);
String FILENAME = "hello.txt";
String string = "hello world!";
try
FileOutputStream fos = openFileOutput(FILENAME, MODE_WORLD_READABLE);
fos.write(string.getBytes());
fos.close();
Toast.makeText(getApplicationContext(), "Data Saved ", Toast.LENGTH_LONG).show();
catch (Exception e)
e.printStackTrace();
Toast.makeText(getApplicationContext(), "error", Toast.LENGTH_LONG).show();
【问题讨论】:
【参考方案1】:openFileOutput()
会将文件放置在其他应用无法访问的私有内部目录中。尝试改用外部存储器。使用getExternalFilesDir()
。
然后它会像
/mnt/sdcard/android/data/<packagename>/files
/storage/sdcar0/Android/data/<packagename>/files
还有更多这样的路径。
【讨论】:
【参考方案2】:它将存储在:
/data/data/packagename/files/
【讨论】:
除非您的手机已root,否则您不会在设备的文件浏览器中找到它,但您应该可以使用adb查看它以上是关于如何在 Android 手机中查看保存的数据文件的主要内容,如果未能解决你的问题,请参考以下文章