I can guide you through the steps of writing and running your first Java program.
1. Install the Java Development Kit (JDK) on your computer. You can download the JDK from the official Oracle website.
2. Open a text editor such as Notepad or Sublime Text.
link for Download Subline Text - https://www.sublimetext.com/
3. Type the following code into the text editor:
----------------------------------------------
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
----------------------------------------------
4. Save the file as `HelloWorld.java`.
5. Open a command prompt (or terminal on macOS/Linux)
and navigate to the directory where you saved the `HelloWorld.java` file.
6. Compile the Java program by typing the following command:
javac HelloWorld.java (Type In CMD - Command Prompt )
7. If the compilation is successful, a new file called `HelloWorld.class` will be created in the same directory.
8. Run the program by typing the following command:
java HelloWorld
9. If everything is working correctly, the output "Hello, World!" should be displayed in the console.
Congratulations, you have successfully written and run your first Java program! This is just the beginning of your Java journey, but it's an important first step.
No comments:
Post a Comment