Installation : JDK
"What Java Do I Need?" You must have a copy of the JRE (Java Runtime Environment) on your
system to run Java applications and applets. To develop Java applications and applets, you need
the JDK (Java Development Kit), which includes the JRE.
•JDK (Java Developement Kit)
–Indispensable pour Eclipse et pour développer des applications
Android
•Etapes d’installation
–Télécharger le JDK (version 6) : http://www.oracle.com/technetwork/java/index.html
–Installer le paquetage téléchargé
–Mettre à jour le chemin de recherche des exécutables
•Pour Linux
# vi ~/.bash_profile
PATH=$PATH:/usr/java/jdk1.6.X_XX/bin
# source ~/.bash_profile
# java
Usage: java [-options] class [args...] (to execute a class)
or java [-options] -jar jarfile [args...] (to execute a jar file)