Eclipse Installation

Could anyone share some updated Eclipse installation and configuration manual, and that in this manual has the steps for setting the environment variables so that I can compile and run the projects?

Author: Diego, 2017-06-06

1 answers

Installation on Windows is very simple Are you trying to set up a java project? If yes you can follow this tutorial:

Summary:

You will need:

Installing JDK

Run the JDK installer and follow the instructions until complete( next > Next > finish), if desired, you can enter the installation directory.

Together with the JDK will be done the installation of JRE (Java Runtime Environment) which is the application that allows you to run the programs in JAVA on your operating system.

Configuring or JAVA does not Windows

Right-click Computer and follow the options Properties > Advanced System Settings > (Advanced tab) Environment Variables {

Create / edit the system variables listed below:

  • JAVA_HOME: enter the JDK installation directory. Example C:\Program Files \ Java\jdk1. 8. 0_45;
  • Path: report % JAVA_HOME% \ bin;
  • CLASSPATH: report % JAVA_HOME% \ lib\tools.jar;

To confirm that the installation and Java configuration was performed successfully, run the commands "java-version" and "javac-version" at the command prompt.

Installing Eclipse

Eclipse runs straight from an executable file. Extract the package."zip " from Eclipse to the directory of your choice. Run the eclipse file.exe to start.

When starting eclipse, you must define the workspace (which is the folder where your workspace

Hello! His JDK and Eclipse are installed and configured to program in JAVA!

REF: http://www.matera.com/br/2015/05/12/tutorial-instalacao-do-java-jdk-e-eclipse-no-windows/

 2
Author: José Henrique Luckmann, 2017-06-06 13:22:22