web-dev-qa-db-fra.com

Comment vérifier si le Java JDK est installé sur Mac?

Comment vérifier si Java SDK est installé sur un Mac?

Existe-t-il une ligne de commande pour cela?

108
angry kiwi

javac -version dans un terminal fera l'affaire

159
user180100

Vous pouvez utiliser le binaire auxiliaire Java_home sur OS X pour obtenir ce que vous recherchez.

Pour répertorier toutes les versions du JDK installé:

$ /usr/libexec/Java_home -V
Matching Java Virtual Machines (2):
    1.8.0_51, x86_64:   "Java SE 8" /Library/Java/JavaVirtualMachines/jdk1.8.0_51.jdk/Contents/Home
    1.7.0_79, x86_64:   "Java SE 7" /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home

Pour demander le chemin Java_HOME d'une version spécifique du JDK, vous pouvez:

$ /usr/libexec/Java_home -v 1.7
/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home

$ /usr/libexec/Java_home -v 1.8
/Library/Java/JavaVirtualMachines/jdk1.8.0_51.jdk/Contents/Home

Vous pouvez tirer parti des commandes ci-dessus dans votre script, comme ceci:

REQUESTED_Java_VERSION="1.7"
if POSSIBLE_Java_HOME="$(/usr/libexec/Java_home -v $REQUESTED_Java_VERSION 2>/dev/null)"; then
    # Do this if you want to export Java_HOME
    export Java_HOME="$POSSIBLE_Java_HOME"
    echo "Java SDK is installed"
else
    echo "Did not find any installed JDK for version $REQUESTED_Java_VERSION"
fi

Vous pourrez peut-être faire if-else et vérifier plusieurs versions différentes de Java.

Si vous préférez une sortie XML, Java_home dispose également d'une option -X pour une sortie au format XML.

$ /usr/libexec/Java_home --help
Usage: Java_home [options...]
    Returns the path to a Java home directory from the current user's settings.

Options:
    [-v/--version   <version>]       Filter Java versions in the "JVMVersion" form 1.X(+ or *).
    [-a/--Arch      <architecture>]  Filter JVMs matching architecture (i386, x86_64, etc).
    [-d/--datamodel <datamodel>]     Filter JVMs capable of -d32 or -d64
    [-t/--task      <task>]          Use the JVM list for a specific task (Applets, WebStart, BundledApp, JNI, or CommandLine)
    [-F/--failfast]                  Fail when filters return no JVMs, do not continue with default.
    [   --exec      <command> ...]   Execute the $Java_HOME/bin/<command> with the remaining arguments.
    [-R/--request]                   Request installation of a Java Runtime if not installed.
    [-X/--xml]                       Print full JVM list and additional data as XML plist.
    [-V/--verbose]                   Print full JVM list with architectures.
    [-h/--help]                      This usage information.
57
Tuxdude

Tapez un terminal:

which javac

Il devrait vous montrer quelque chose comme

/usr/bin/javac
18
asgoth

Au-dessous de la commande a assez bien fonctionné:

javac -version

J'ai également vérifié manuellement en accédant au dossier Java sur mon Mac.

/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk
1

L'outil /usr/bin/Java_home renvoie 1 si Java n'est pas installé.

Vous pouvez donc vérifier si Java est installé de la manière suivante:

/usr/libexec/Java_home &> /dev/null && echo "installed" || echo  "not installed"
1
ramzes2

Il suffit de taper javac. S'il est installé, vous obtenez des informations d'utilisation. Dans le cas contraire, il vous demandera simplement si vous souhaitez installer Java.

1
Hari Dattada

Assurez-vous de définir correctement le JDK du projet et de redémarrer IntelliJ (redémarrage complet).

0
Luís Soares