gpt4 book ai didi

android - Android 模拟器上的文件存储在哪里?

转载 作者:搜寻专家 更新时间:2023-11-01 08:07:39 25 4
gpt4 key购买 nike

我正在 Android 上开发一个小程序,用于将一些硬编码文本写入具有硬编码名称的文件。虽然操作成功(没有错误),但我无法在模拟器上找到该文件。我的问题:

  1. 文件写在哪里?
  2. 要将文件存储在主屏幕或应用程序页面(通常是用户界面可以到达的地方),我需要什么文件路径?

代码:

public class MainActivity extends Activity {

Button writeFile;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

writeFile = (Button) findViewById(R.id.writeFile);
writeFile.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub

//Step 1. Get file name.
String file = "hello_files.txt";
String str = "hello world";

Log.v(this.toString(), "Going to write to a file.");
FileOutputStream fos;
try {
fos = openFileOutput(file, MODE_WORLD_READABLE | MODE_WORLD_WRITEABLE);
fos.write(str.getBytes());
Log.v(this.toString(), "Local path = ");
fos.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
Log.v(this.toString(), "File not found!!");
e.printStackTrace();
} catch (IOException e) {
Log.v(this.toString(), "IO Exception.");
e.printStackTrace();
}
}
});
}

最佳答案

文件存储在“/mnt/sdcard/”(外部存储)或“/data/data/Your Package Name/”(内部存储)中(如此 question)。您只能从此包访问此文件夹(除非手机已获得 root 权限)。

你问题的第二部分不是很清楚。据我所知,Android 不像 Windows(没有桌面文件夹)。要在桌面上创建快捷方式,您需要实现一个 App 小部件。

关于android - Android 模拟器上的文件存储在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12998098/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com