The tool that we use to compile a Java source file into a Java class file is called a compiler. Most programmers use an Integrated Development Environment (IDE) that has the compiler built in and helps you write, compile, run, and debug programs.
You can learn Java by just using the interactive coding panels called Active Code in this e-book. If you are logged in, the Active Code will remember your changes and even show you a history of your changes to the code if you click on Load History.
However, itβs a good idea to also try a Java IDE to build code outside of this e-book, especially to try coding with user input which Active Code cannot do. There are many Java IDEs available.
There are a lot of online cloud IDEs where you can code online in many programming languages. Most are free to start, but offer different features for a price. These are great options if you are using a Chromebook or you cannot install software on your computer or you want an easy no-installation option. Some of the Active Code samples in this e-book also include a link to online IDEs. These projects can be copied to make your own copy.
) where you can run Java and Java Swing programs. Students can share the links to their code and the history of their code is saved. CodeHS has free and paid features. Grading features are in the paid version.
) is another online IDE that offers many free and paid features for setting up classrooms. In the free version, tudents can share links to their code and the history of their code is saved. Classroom features are in the paid version.
) an online IDE which recently switched to only allowing 3 projects at a time for free. Be aware that Replit has turned on its AI feature for code completion for all accounts (https://replit.com/aiβ5β
https://replit.com/ai
). Each user can turn the AI on and off at the bottom of the code window, and use an AI chat window to ask questions of the AI.
) is an online IDE that offers many free and paid features for teachers to set up classrooms like Coding Rooms. It has a built-in version of CSAwesome.
) allows teachers to set up a classroom based on github repositories. Github and git are both widely used in the computer industry, so learning to use them is great experience for students. Github now has a cloud IDE called Codespaces (https://github.com/features/codespacesβ9β
https://github.com/features/codespaces
) which you can use for 60 hours a month for free or completely free if you join as a school or get approved as a teacher or student. In Codespaces, you can start from a blank template or a repo, open a .java file in the VSCode editor, follow prompts to install the Extension Pack for Java, click on the Run and Debug (play button), follow the prompts to install the Java debugger, and see the output of your code in the terminal. You can also use Copilot (https://github.com/features/copilotβ10β
https://github.com/features/copilot
), which is a coding AI based on GPT, for free if you are approved for educational use.
) is a widely used coding editor which you can download on your local computers. It has many useful extensions. The code can be run in a terminal window in the editor. See https://code.visualstudio.com/docs/languages/javaβ13β
https://code.visualstudio.com/docs/languages/java
for Java support. This editor is different than Microsoft Visual Studio which is a very large IDE.
) is a free, simple, easy to install and use development environment. One nice feature is the interactions pane at the bottom which lets you try out Java code without having to create a class first.
) is a free lightweight development environment, created specifically to provide automatic generation of software visualizations. jGRASP is implemented in Java, and runs on all platforms with a Java Virtual Machine (Java version 1.5 or higher). jGRASP produces Control Structure Diagrams (CSDs) for Java, C, C++, Objective-C, Python, Ada, and VHDL; Complexity Profile Graphs (CPGs) for Java and Ada; UML class diagrams for Java; and has dynamic object viewers and a viewer canvas that work in conjunction with an integrated debugger and workbench for Java. The site includes both intro video and PDF tutorials.
) is what many professional Java programmers use. It may be a little complex for beginners. Here are some installation and configuration instructions for Eclipse for Java beginners: http://skylit.com/javamethods/faqs/Eclipse.pdfβ23β