

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to run a java program
Compiling and running a java program is very easy after JDK installation. Following are the steps −
Open a command prompt window and go to the directory where you saved the java program (MyFirstJavaProgram.java). Assume it's C:\.
Type 'javac MyFirstJavaProgram.java' and press enter to compile your code. If there are no errors in your code, the command prompt will take you to the next line (Assumption: The path variable is set).
Now, type ' java MyFirstJavaProgram ' to run your program.
You will be able to see the result printed on the window.
- Related Questions & Answers
- How to run Java package program
- How to Run a Python Program
- How to compile & run a Java program using Command Prompt?
- How to run Perl Program?
- How to run Python Program?
- How to run JavaTuples program in Eclipse?
- Run a Python program from PHP
- How to compile and run the C++ program?
- How to run a JAR file through command prompt in java?
- How to run a command inside Docker Container?
- Can we synchronize a run() method in Java?
- How to run matplotlib in Tkinter?
- What is Java run time environment?
- Using run-time polymorphism in Java
- Run-time Stack mechanism in Java
Advertisements