gpt4 book ai didi

android - 如何从内部存储中读取文件内容 - Android 应用

转载 作者:IT王子 更新时间:2023-10-29 00:03:50 28 4
gpt4 key购买 nike

我是一名使用 Android 的新手。已在 data/data/myapp/files/hello.txt 位置创建了一个文件;这个文件的内容是“你好”。如何读取文件内容?

最佳答案

看看这个如何在android中使用存储http://developer.android.com/guide/topics/data/data-storage.html#filesInternal

要从内部存储中读取数据,您需要您的应用文件夹并从此处读取内容

String yourFilePath = context.getFilesDir() + "/" + "hello.txt";
File yourFile = new File( yourFilePath );

你也可以使用这种方法

FileInputStream fis = context.openFileInput("hello.txt");
InputStreamReader isr = new InputStreamReader(fis);
BufferedReader bufferedReader = new BufferedReader(isr);
StringBuilder sb = new StringBuilder();
String line;
while ((line = bufferedReader.readLine()) != null) {
sb.append(line);
}

关于android - 如何从内部存储中读取文件内容 - Android 应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14768191/

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