<ul>
<li></li>
</ul>
<p>Extract the zip file into a folder, e.g. <code>C:\Program Files\Java</code> and it will create a <code>jdk-11</code> folder (where the bin folder is a direct sub-folder). You may need Administrator privileges to extract the zip file to this location.</p>
<ul>
<li></li>
</ul>
<p>Set a PATH:</p>
<ul>
<li>
<p>Select Panneau de configuration puis System.</p>
</li>
<li>
<p>Click Advanced puis Variables d’environnement.</p>
</li>
<li>
<p>Add the location of the bin folder of the JDK installation to the PATH variable in Variables système.</p>
</li>
<li>
<p>The following is a typical value for the PATH variable: <code>C:\WINDOWS\system32;C:\WINDOWS;"C:\Program Files\Java\jdk-11\bin"</code></p>
</li>
<li></li>
</ul>
<p>Set JAVA_HOME:</p>
<ul>
<li>
<p>Under Variables système, click New.</p>
</li>
<li>
<p>Enter the variable name as JAVA_HOME.</p>
</li>
<li>
<p>Enter the variable value as the installation path of the JDK (without the <code>bin</code> sub-folder).</p>
</li>
<li>
<p>Click OK.</p>
</li>
<li>
<p>Click Apply Changes.</p>
</li>
<li>
<p>Configure the JDK in your IDE (e.g. IntelliJ or Eclipse).</p>
</li>
</ul>
<p>You are set.</p>
<p>To see if it worked, open up the invite de commandes and type <code>java -version</code> and see if it prints your newly installed JDK.</p>
<p>If you want to uninstall - just undo the above steps.</p>
<p><strong>Note:</strong> Vous pouvez également point <code>JAVA_HOME</code> to the folder of your JDK installations puis set the <code>PATH</code> variable to <code>%JAVA_HOME%\bin</code>. So when you want to change the JDK you change only the <code>JAVA_HOME</code> variable and leave <code>PATH</code> as it is.</p>