正在从 Assets 文件夹加载 xml 文件。我得到 OutOfMemoryError。我使用的代码是
private String convertStreamToString(InputStream is) {
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
StringBuilder sb = new StringBuilder();
String line = null;
try {
while ((line = reader.readLine()) != null) {
sb.append(line + NEW_LINE);
}
reader.close();
} catch (IOException e) {
//do nothing.
} finally {
try {
reader.close();
} catch (IOException e) {
//do nothing.
}
}
reader=null;
return sb.toString();
}
有没有另一种方法来摆脱这个异常。如果您发布任何代码,它将更有帮助。提前致谢。