gpt4 book ai didi

java - Android 在三星手机上从存储卡读取文件限制为 10kb

转载 作者:行者123 更新时间:2023-12-02 07:54:03 32 4
gpt4 key购买 nike

我正在尝试从 Android 手机上的 SD 卡上存储的文件中读取内容。为此,我使用以下代码:

public String readIt(File file) {
StringBuffer sb = new StringBuffer();
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(file), encoding));
String line;
while (( line = reader.readLine()) != null) {
sb.append(line + '\n');
}
reader = null;
} catch (FileNotFoundException e) {
Toast.makeText(this, "File not found", Toast.LENGTH_SHORT).show();
return null;
} catch (IOException e) {
Toast.makeText(this, "Error reading file", Toast.LENGTH_SHORT).show();
return null;
}
return sb.toString();
}

这已经困扰我一段时间了,知道为什么它在三星手机上消失吗?有没有人建议如何解决它并在读取时保留文件编码?

最佳答案

          FileReader fstream;
try {
fstream = new FileReader(filename);
} catch (FileNotFoundException e) {
Log.e("meminfo", "File access error " + filename);
return null;
}

BufferedReader in = new BufferedReader(fstream, CHARS_TO_BUFFER);

使用此代码 fragment 我在三星手机上没有任何问题。

关于java - Android 在三星手机上从存储卡读取文件限制为 10kb,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9870426/

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