Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
guys, there is a problem with eclipse.exe. When I tried to start it, eclipse start picture appeared and then after 1 second it disappeared. I don't see any errors or messages and some useful info. Can anyone help me?
You could check the logs, there's a .log file in the .metadata directory inside each workspace, if there is a crash during startup it could be found there. Another possibility is to start eclipse with these arguments
-clean -clearPersistedState
OR you could stop the splashscreen from showing (if the crash would be causes by the splashscreen itself)
open eclipse.ini and remove the line
-showsplash
then add
-nosplash
Because it could be caused by the splashscreen. I would say make sure your java home etc is set up correctly, but with my experience with eclipse, it would show you an error message if this is the problem.
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 days ago.
Improve this question
I have a ChromeBook and debian 11 on it. I'm trying to install Optifine on Minecraft. I've downloaded the optifine .jar but when I'm trying to open it I have an error:
Can't connect to X11 window server using""
I'v tried multiple things to fix it like:
export DISPLAY=:0.0
But nothing works, please help me.
Didn't reproduce. Check the screen capture below.
Check if you can run xclock, etc.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
i've got an error in java because i had to reinstall windows.
Error occured during initialization of VM
I tried in CMD to use java and the exact same error occurs!
I reinstalled java jre and removed jdk, still nothing helped. Any idea on how to solve this?
To make sure that it was not working i searched for Bukkit and tried to run the server, the exact same thing happens.
When i tried java -version
According to the comments, the problem was with the PATH.
Go to your environmental variables and check if there is a variable pointing to java.exe in jre directory. Reinstalling jre should solve the problem but to avoid it you can try the following:
The variable pointing to C:\Program Files (x86)\Java\jdk<version> should be called JAVA_HOME and the path variable should be extended with %JAVA_HOME%\bin\ and %JAVA_HOME% itself. Then somehow it might have the advantage to javapath
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I reinstalled the jdk after the installation of the new operating system, and set the environment variable of the system accordingly. I also restarted the computer after the reinstallation and the setup of new environment variable. Still, i am not able to run any java programs on my computer.
https://onedrive.live.com/redir?resid=B2D6F26E24ACBDB2!2168&authkey=!AJaB6lD3MDO37hA&v=3&ithint=photo%2cpng
https://onedrive.live.com/redir?resid=B2D6F26E24ACBDB2!2167&authkey=!ADKlC8-dOFuH77Y&v=3&ithint=photo%2cpng
if you install jdk and java SE correctly
2.then download netbeans from netbeans.org/downloads/. Make sure that you are downloading netbeans 8.0.1. it will automatically fix errors and install necessary file.
after installation go on Cmd and type Javac
follow will be the screen of cmd after running this specific command
enjoy java :)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I downloaded eclipse IDE and extracted it, but when I run it I get this error:
Error: could not open 'C:\Program Files\Java\jre7\lib\amd64\jvm.cfg'
PS : I already have JDK and my windows is 64bit
Updating JDK to 1.7 didn't help (because I already have it) and other solutions that I couldn't understand (maybe because instead of amd64 in other posts it was "I'and 3 digits'").
This is not the problem of your Eclipse, but your JRE. Eclipse needs a JRE (Java Runtime Environment) to run. I suggest to remove your currently installed version, and download a new one from the Oracle.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
The last thing I remember was changing the web browser preferences in eclipse. I had changed it to WebKit from Chrome. I was trying to test a dynamic web project, and as soon as I changed the browser and ran the application,
eclipse crashed....
It generated an error log when I restarted it, which is here-
https://www.dropbox.com/s/p6g8mitc2ywcz60/hs_err_pid4856.log
If -clean works then great else change the workspace and import your project again will fix your problem
Add a -clean parameter to your shortcut, then start eclipse and then remove the -clean parameter again.
"C:\Program Files(x86)\Eclipse\eclipse.exe" -clean
This will clean your workspace and will probably fix your problem.