Java started but returned exit code 1 sửa lỗi

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

Pick a username Email Address Password

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Java was started but returned exit code 1: So after fixing exit code 13 and JVM not found are you still getting the exit code 1 error? Then probably you have done something wrong. First, check that if you have the latest JDK[Java Development Kit] Downloaded? And what is the architecture of the PC on which you are running is that 64-bit or 32-bit? And is it the same as the JDK version? because it should be the same. Have you set the path in the environment variable like shown in the fix JVM not found error? Do all of the above before continuing.

System.exit code terminates the currently running Java virtual machine by initiating its shutdown sequence. This method never returns normally and the argument serves as a status code.

1. Go to the eclipse folder and right-click on the eclipse.ini and select edit.

2. Now add the following lines: [path of the JDK should be where you have installed jdk]

-XX:-UseCompressedOops -vm C:\Program Files\Java\jdk1.7.0_21\jre\bin\server\jvm.dll

Don’t use the one in C:\Windows\System32

NOTE: The above fix also fixes Eclipse error: Java was started but returned exit code=2

Important: Make sure, that the -vm option occurs before the -vmargs command. Because every command which occurs after -vmargs is passed directly t the JVM.

Everything after is passed directly to the JVM. If not, Fix Could Not Create the Java Virtual Machine in Windows 10. If you don’t know where the eclipse.ini file is: regularly it is in the folder of your eclipse.exe.

Let’s see how does it work out? Finally, it has worked out, now go and make the best app possible!

That’s it people you have successfully learn how to fix java was started but returned exit code 1 but if you still have queries regarding this post feel free to ask me in the comment’s section.

The error Java was Started by Returned Exit Code=1 while using eclipse. This error terminates the currently running JVM by initiating the shutdown sequence.

The reason for this error is that there may be something wrong in the eclipse.ini file. Here is the part of the error message for Java was Started by Returned Exit Code=1:

Java was started but returned exit code=1

C:\WINDOWS\system32\javaw.exe
-Dosgi.requiredJavaVersion=1.6
-Xms40m
-Xmx768m
-Declipse.buildId=v22.0.5-757759
-XX:MaxPermSize=256m
-jar

This error occurs because the Java Virtual Machine path is not correctly given.

To solve this error, follow the steps below:

  • Make sure the JDK is successfully installed on your system.
  • ##### Open the eclipse.ini file from the Eclipse folder and make sure the path of JVM is correct, as given below:

    -vm C:\Program Files\Java\jdk-17.0.2\bin\server\jvm.dll

  • Make sure the -vm option is before the

    -vm C:\Program Files\Java\jdk-17.0.2\bin\server\jvm.dll

    0 option.

Here is the full setting for the eclipse.ini file:

-startup
plugins/org.eclipse.equinox.launcher_1.6.400.v20210924-0641.jar
--launcher.library
C:\Users\Sheeraz\.p2\pool\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.400.v20211117-0650
-product
org.eclipse.epp.package.java.product
-showsplash
C:\Users\Sheeraz\.p2\pool\plugins\org.eclipse.epp.package.common_4.22.0.20211202-1200
--launcher.defaultAction
openFile
--launcher.appendVmargs
-vm
C:\Program Files\Java\jdk-17.0.2\bin\server\jvm.dll
-vmargs
-Dosgi.requiredJavaVersion=11
-Dosgi.instance.area.default=@user.home/eclipse-workspace
-Dsun.java.command=Eclipse
-XX:+UseG1GC
-XX:+UseStringDeduplication
--add-modules=ALL-SYSTEM
-Dosgi.requiredJavaVersion=11
-Dosgi.dataAreaRequiresExplicitInit=true
-Dorg.eclipse.swt.graphics.Resource.reportNonDisposed=true
-Xms40m
-Xmx2048m
--add-modules=ALL-SYSTEM
-Declipse.p2.max.threads=10
-Doomph.update.url=//download.eclipse.org/oomph/updates/milestone/latest
-Doomph.redirection.index.redirection=index:/->//git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/

Sheeraz is a Doctorate fellow in Computer Science at Northwestern Polytechnical University, Xian, China. He has 7 years of Software Development experience in AI, Web, Database, and Desktop technologies. He writes tutorials in Java, PHP, Python, GoLang, R, etc., to help beginners learn the field of Computer Science.

Chủ Đề