Writing=>Compiling=>Executing in Java without IDE 07-17-2017, 08:02 PM
#1
In The Name Of Allah
Al-Salam Alekum
I will show you how to write a java programs without using IDE.
We will use CMD and Notepad.
let's start..
First Writing:
Open your Notepad and write your code:
Code:
import javax.swing.JOptionPane;
public class Welcome
{
public static void main( String args[ ] )
{
JOptionPane.showMessageDialog(null, "" );
}
}
Next Compiling:
Open CMD and we will compile the file by using javac command:
Code:
javac Welcome.java
Finally Executing:
We will use again CMD by using "java + className" command:
Code:
java Welcome
Thanks for reading.
Wa Salam Alekum
Die But Don't Lie
“Oh Abu Dharr! Don’t look at the smallness of the sin but look at the one you disobeyed.” Prophet Muhammad (pbuh)
Click for Free VPN
“Oh Abu Dharr! Don’t look at the smallness of the sin but look at the one you disobeyed.” Prophet Muhammad (pbuh)
Click for Free VPN