wiki/pages/jdk.md

25 lines
449 B
Markdown
Raw Permalink Normal View History

2020-04-16 03:25:02 +00:00
<!--
title: jdk 11
description: Using JDK 11
author: gbmor
-->
# jdk 11
To use JDK 11 for development, you will need to make the following additions
to your `~/.kshrc` file:
```
export PATH=/usr/local/jdk-11/bin:$PATH
export JAVA_HOME=/usr/local/jdk-11
```
Afterwards, you may call `java`, `javac`, etc as expected.
JDK 1.8.0 is also available by replacing `jdk-11` in the above two lines
with `jdk-1.8.0`
2022-07-13 04:25:31 +00:00
JDK 17 is also available.
2020-04-16 03:25:02 +00:00
[back](/)