I get my Java file in the terminal as well. So I went in that directory using the cd command. I placed the Main.java file under my D drive this time. Then if I check all the files under that directory, then I will get the Main.java file as well. As my user name contains white spaces, I have used " " to enclose them. I need to use cd to indicate that I want to change directory. Or, if I want, I can also go there using my terminal. I can simply go there through my file explorer. Suppose I have the source code ( Main.java ) inside This PC > Documents folder. How to go into the directory where the source code is: for Windows 🪟 You can go straight into the directory through your file manager if you want. If you have already written your Java code in an editor, then simply go into that directory. public class Main 📦 Step 1 – Go to the directory where your source code is I will be using the following Java code in the next step. The process I am going to show you in this article is applicable to any operating system whether that is Windows, MacOS, or Linux. Fear not! The procedure is quite easy, and after reading the entire article you should be able to run your own Java code in the terminal. In this article, I will show you how you can execute Java directly from your favorite terminal window. Whatever your purpose may be, executing Java code directly from the terminal is a very easy task. This gives them better clarity and helps them understand how the code is working, where it is returning the desired value, where the bug might be, and so on. Many of you might have heard that experienced professional programmers also use the terminal to execute the programs. However, it is good practice to know how your code actually executes and provides the output it gives you.
Running code in your IDE is straightforward, but you don't often get to see how it executes your code (even though you can check the command in the terminal of course!). If you work with Java, you've probably used one of the well known text editors like Sublime Text, VS Code, Brackets, Atom, and Notepad++ as well as IDEs like Apache NetBeans and IntelliJ IDEA.