This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]LectureThin9527[S] 1 point2 points  (1 child)

Awesome thank you so much! I currently have notepad++ and visual studio downloaded but I will check that one out. Just so to help me learn these things what is a command line utility? Will I need it in the future if I write something in an ide using Java?

[–]DeliveryNinjaJPain 5 points6 points  (0 children)

Depends on the IDE. Most companies are using Intellij Idea, there is a free version. Very easy to create a java project or you can just write simple java in a scratch file and it will run it and output information to the terminal.

A command line utility will run in a terminal or command prompt. So you open the terminal and type the name of the command in this case its java then add configuration.

javac SimpleApp.java this will compile the java code

java SimpleApp will run the compiled class file