gpt4 book ai didi

android - 打开一个 12kb 的文本文件需要太长时间......?

转载 作者:太空宇宙 更新时间:2023-11-03 11:41:26 25 4
gpt4 key购买 nike

以下代码有效,但打开一个小文件花费的时间太长(超过一分钟)。 LogCat 显示了很多“GC_FOR_MALLOC 在##ms 中释放了#### 对象/###### 字节”的实例。有什么建议吗?

 File dirPath = new File(Environment.getExternalStorageDirectory(), "MyFolder");
String content = getFile("test.txt");

public String getFile(String file){
String content = "";
try {
File dirPathFile = new File(dirPath, file);
FileInputStream fis = new FileInputStream(dirPathFile);
int c;
while((c = fis.read()) != -1) {
content += (char)c;
}
fis.close();
} catch (Exception e) {
getLog("Error (" + e.toString() + ") with: " + file);
}
return content;
}

更新:

这是现在的样子:

File dirPath = new File(Environment.getExternalStorageDirectory(), "MyFolder");
String content = getFile("test.txt");

public String getFile(String file){
String content = "";
File dirPathFile = new File(dirPath, file);
try {
StringBuilder text = new StringBuilder();
BufferedReader br = new BufferedReader(new FileReader(dirPathFile));
String line;
while ((line = br.readLine()) != null) {
text.append(line);
text.append('\n');
}
content = new String(text);
} catch (Exception e) {
getLog("Error (" + e.toString() + ") with: " + file);
}
return content;
}

谢谢大家!!

最佳答案

在字符串上使用 +=极度低效的 - 它会不断地分配和释放内存,这是您需要避免的!

如果您需要不断添加字符,请使用 StringBuilder 并预先为其提供足够大的缓冲区。

但是,最好将整个文件作为字节数组读取,然后从该字节数组创建一个字符串。使用 String(byte[]) 构造函数。

关于android - 打开一个 12kb 的文本文件需要太长时间......?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4329481/

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