Home  >  Article  >  Java  >  javaw.exe path error causes eclipse to fail to start

javaw.exe path error causes eclipse to fail to start

王林
王林Original
2019-11-29 10:19:374349browse

javaw.exe path error causes eclipse to fail to start

Error as shown:

javaw.exe path error causes eclipse to fail to start

Cause:

javaw.exe or path was not found in the specified path mistake.

Because Eclipse needs javaw.exe to start when it starts. After first searching for each directory in the path, if it is not found, it will check and search in the installation directory of eclipse. That is: first check to see if it is installed outside; if not, check to see if you have brought it yourself. If none are found, the above error will be reported.

Recommended related videos: java learning video

Solution:

1. We can set path to let Eclipse pass the path in the path variable Just find javaw.exe.

For example, the path of my javaw.exe is D:\jdk1.8.0_25\bin, then you only need to configure the path in the environment variable to D:\jdk1.8.0_25\bin.

2. The second solution can be solved by modifying the eclipse.ini file.

Open the eclipse.ini file under the Eclipse installation file, find the -vm line (some eclipse.ini files do not have it, if not, add it directly), and change the next line of -vm to javaw. The path where the exe is located can be used. If the path configuration is wrong, modify it again as shown in the figure:

javaw.exe path error causes eclipse to fail to start

If you want to learn more related articles, you can visit: Introduction to Java Programming

The above is the detailed content of javaw.exe path error causes eclipse to fail to start. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn