1
Could someone share some updated Eclipse setup and configuration manual, and in this manual have the steps for setting up the environment variables so I can compile and run the projects?
1
Could someone share some updated Eclipse setup and configuration manual, and in this manual have the steps for setting up the environment variables so I can compile and run the projects?
2
Installation in Windows is very simple Are you trying to set up a java project? If yes you can follow this tutorial:
Summary:
You will need to:
JDK: Download the latest version here:
http://www.oracle.com/technetwork/java/javase/downloads/index.html
Eclipse: Download the latest version here:
Installing the JDK
Run the JDK installer and follow the instructions until finished (next > next > Finish), if desired, you can inform the installation directory.
Together with the JDK will be done the installation of the JRE (Java Runtime Environment) which is the application that allows you to run the programs in JAVA on your operating system.
Configuring JAVA on Windows
Right-click Computer and follow the options Properties > Advanced System Settings > (Advanced tab) Environment Variables...
Create/edit the system variables listed below:
To confirm that the JAVA installation and configuration was successfully performed, run the "java -version" and "javac -version" commands at the command prompt.
Installing the Eclipse
Eclipse runs directly from an executable file. Extract the ".zip" package from Eclipse to the directory of your choice. Run the eclipse.exe file to start.
When starting the eclipse, you should set the working Workspace (which is the folder where your working space will be kept
Ready! Your JDK and Eclipse are installed and Configured for JAVA programming!
REF: http://www.matera.com/br/2015/05/12/tutorial-instalacao-do-java-jdk-e-eclipse-no-windows/
Thank you for sharing José!
Browser other questions tagged java eclipse jdk
You are not signed in. Login or sign up in order to post.
Which operating system?
– igventurelli
The operating system that I will do a new installation will be Windows 10 32bits.
– Diego
Set up java environment variables in windows: http://www.devmedia.com.br/preparaca-do-ambiente-para-development-em-java/25188 Run Eclipse: https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-00-introduction-to-computers-and-engineering-problem-solving-spring-2012/tools/Mit1_00s12_insl_eclpse_win.pdf
– Emerson Vieira
Thank you for sharing Emerson!
– Diego