首页 > 编程语言 >[Java SE]Java SE异常合集

[Java SE]Java SE异常合集

时间:2023-03-21 18:13:25浏览次数:49  
标签:code Java Environment 0xc0000005 report 合集 SE

1 概述

2 问题集

Q1 : JAVA应用程序启动时报"A fatal error has been detected by the Java Runtime Environment: EXCEPTION_ACCESS_VIOLATION (0xc0000005)"

问题描述

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000010014ed4, pid=16552, tid=0x0000000000007318
#
# JRE version: Java(TM) SE Runtime Environment (8.0_261-b12) (build 1.8.0_261-b12)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.261-b12 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C  [sigar-amd64-winnt.dll+0x14ed4]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# An error report file with more information is saved as:
# E:\source_code\xx\xx\xx-common\hs_err_pid16552.log
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

Process finished with exit code 1

问题分析

这个错误是指没有实现的方法,一般是由于没有加入合适的lib文件,只要加入对应的lib文件就可以了。 ---- 网友

  • JDK 版本过高 或 过低
  • LIB 库 / JAR 包 未加载,或版本过高/过低

参考文献

标签:code,Java,Environment,0xc0000005,report,合集,SE
From: https://www.cnblogs.com/johnnyzen/p/17240906.html

相关文章