英文:
A fatal error has been detected by the Java Runtime Environment while using jsoup
问题
我在for循环中运行了以下命令,以获取myurl的HTML数据:
doc = Jsoup.connect("myurl").get();
当我使用上述代码时,我收到了以下错误:
> Java运行时环境检测到致命错误:
> 在pc=0x00007f2bd695c76c处检测到SIGSEGV(0xb),pid=12495,tid=0x00007f2bd4863700
> JRE版本:Java(TM)SE Runtime Environment(8.0_181-b13)(构建1.8.0_181-b13)
Java虚拟机:Java HotSpot(TM)64位服务器VM(25.181-b13混合模式linux-amd64压缩oops)
有问题的帧:
V [libjvm.so+0x99876c] oopDesc* PSPromotionManager::copy_to_survivor_space<false>(oopDesc*)+0x7c
> 写入核心转储。默认位置:/home/cardekho/tomcat/apache-tomcat-9.0.21/bin/core或core.12495
> 具有更多信息的错误报告文件已保存为:
/home/cardekho/tomcat/apache-tomcat-9.0.21/bin/hs_err_pid12495.log
>
如果您想提交错误报告,请访问:
http://bugreport.java.com/bugreport/crash.jsp
英文:
i have run below command in foor loop to get the html data of myurl
doc = Jsoup.connect("myurl").get();
when i am using above code i got below error
> A fatal error has been detected by the Java Runtime Environment:
> SIGSEGV (0xb) at pc=0x00007f2bd695c76c, pid=12495, tid=0x00007f2bd4863700
> JRE version: Java(TM) SE Runtime Environment (8.0_181-b13) (build 1.8.0_181-b13)
Java VM: Java HotSpot(TM) 64-Bit Server VM (25.181-b13 mixed mode linux-amd64 compressed oops)
Problematic frame:
V [libjvm.so+0x99876c] oopDesc* PSPromotionManager::copy_to_survivor_space<false>(oopDesc*)+0x7c
> Core dump written. Default location: /home/cardekho/tomcat/apache-tomcat-9.0.21/bin/core or core.12495
> An error report file with more information is saved as:
/home/cardekho/tomcat/apache-tomcat-9.0.21/bin/hs_err_pid12495.log
>
If you would like to submit a bug report, please visit:
http://bugreport.java.com/bugreport/crash.jsp
专注分享java语言的经验与见解,让所有开发者获益!
评论