Getting Set Up with Java
So, you want to write programs in Java! Cool! You will need a few things installed on your computer or to use an online IDE to make writing programs easier.
Download the latest JDK and an IDE
- You need to install the latest JDK to your machine. You can download the JDK from different places. The latest versions of JDK can be found at jdk.java.net. From this page, select the latest "Ready for use" JDK version.
- You will have the option to download one of five versions. Choose the version for your operating system:
- Linux/AArch64
- Linux/x64
- macOS/AArch64
- macOS/x64
- Windows/x64
- Depending on the version you download, you will then need to either unzip or expand the file. You can save the content of these files anywhere on your computer.
- There are several IDEs you can download to write, compile, and run your Java programs. There are IDEs that are made for educational purposes. Many of these IDEs are not compatible for the lasted JDK version. The following IDEs are up to date with the latest JDK and are suggested:
Java FX
JavaFX is an open source, next generation cliet application platform for desktop, mobile, and embedded systems built on Java. JavaFX is a standalone component and builds on top of a JDK. You will need to install a JDK that works with the JavaFX version you plan to use.
- Download the latest ready to use version here jdk.java.net.
- From this page, you will have the option to download one of four versions. Choose the version for your operating system:
- Linux/x64
- macOS/AArch64
- macOS/x64
- Windows/x64
- Depending on the version you download, you will then need to either unzip or expand the file. You can save the content of these files anywhere on your computer.
- For more on JavaFX, check out these JavaFX tutorials.