- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java Simple Program
Requirements for Writing a Simple Java Program
To write a simple Java program, you need:
- JDK: Install JDK, which includes the Java compiler (javac) and tools for compiling and running Java programs.
- Text Editor or IDE: Choose a text editor (e.g., Notepad, Sublime Text) or an IDE (e.g., Eclipse, IntelliJ IDEA) for writing Java code.
- Java Source Code: Write Java code using a text editor or IDE. Programs typically include a main class with a main method as the entry point.
- Compilation: Compile Java source code using javac to generate bytecode files (.class).
- Execution: Run compiled bytecode using the Java Runtime Environment (JRE) by specifying the main class with the java command.
Example Simple Java Program
Here's an example of a simple Java program:
public class SimpleProgram {
public static void main(String[] args) {
System.out.println("Hello, Java!");
}
}
Explanation
- Class Declaration: The SimpleProgram class is declared using the public access modifier.
- Main Method: The main method is the entry point of the Java program. It is declared as public static void main(String[] args). This method is called when the program is executed.
- Print Statement: Inside the main method, System.out.println("Hello, Java!"); is used to print "Hello, Java!" to the console.
Summary
This simple Java program prints "Hello, Java!" to the console when executed. It demonstrates the structure of a basic Java program with a main method and a print statement.