Detection of fatal error by Java Runtime Environment

Asked By 0 points N/A Posted on -
qa-featured

I am setting up Java for my new laptop and currently stuck here. I had success in importing the git. I have also performed the maven build. But, i am facing problem when i run the project i have just created. The error is as follows: EXCEPTION_ACCESS_VIOLATION (0xd0000005) at pc=0x0000000052811d2e, pid=6368, tid=3312. Also, it says that an error log is saved here in the below path. C:UsersVostrogitkpmg-advisoryhs_err_pid6368.log. Can anyone help me in understanding this error? What does this mean and how to rectify it?

SHARE
Answered By 590495 points N/A #194276

Detection of fatal error by Java Runtime Environment

qa-featured

If you simply want to run Java programs but not to develop them, you can use the Java Runtime Environment or JRE. But if you want to create applications out of Java or using Java, you need to use the JDK or the Java Development Kit. The Java Development Kit already includes the Java Runtime Environment so there’s no need to download it separately.

To download JRE, visit Java SE Runtime Environment 8. For Java developers who want to build Java applications, download Java SE Development Kit 8. See if this fixes the problem. If not and you still get that “exception access violation” error, make sure the Java Development Kit application is running with administrative privileges. Find the JDK application on your desktop or in the Start menu, right-click on the link or on the icon then select Properties.

Select Compatibility tab. Check “Run this program as an administrator” then click OK. See if this fixes the problem.

Related Questions