java.lang.OutOfMemoryError: Java heap space
程序员文章站
2022-06-13 21:30:29
...
1.场景
在使用BufferReader读取文件,之后拼接字符串。
2.原因分析
改之前代码
String temp0=br0.readLine();
while(temp0!=null){
//业务数据处理
...
drillServiceImpl.insert(pd);
}
循环中少加了 temp0=br0.readLine() ,导致死循环,从而报错内存溢出
修改后如图所示
String temp0=br0.readLine();
while(temp0!=null){
//业务数据处理
...
//读取下一行
temp0=br0.readLine();
drillServiceImpl.insert(pd);
}
推荐阅读
-
eclipse scala Could not reserve enough space for object heap
-
如何给女朋友讲明白:Java 中 Stack(栈) 与 Heap(堆)
-
java中程序上线报错: tomcat中java.lang.OutOfMemoryError: PermGen space
-
spark大批量读取Hbase时出现java.lang.OutOfMemoryError: unable to create new native thread
-
Error occurred during initialization of VM Could not reserve enough space for 2097152KB object heap
-
在Intellij IDEA下编译Java项目,报错:java.lang.OutOfMemoryError: ...(此处忽略) GC overhead lim
-
Tomcat同时部署多个应用——内存溢出(java.lang.OutOfMemoryError: PermGen space)的解决办法
-
java.lang.OutOfMemoryError: PermGen space及其解决方法
-
ES内存溢出,报错:java.lang.OutOfMemoryError: Java heap space
-
java.lang.OutOfMemoryError: Java heap space 解决方法