Blog Introductions
In this blog contains tutorials about HTML Tutorials, Python Tutorials, CSS Tutorials, How to, PHP Tutorials, Java Tutorials, C++ Tutorials, Tutorials, Examples, Source code,Learning,
Tips and Software development services. JAVA Introduction and Installation on window | Java tutorials Bestitworriors
JAVA Introduction and Installation on window
JAVA Introduction and Installation on window | Java tutorials Bestitworriors -JAVA is programing language to develop web apps mobile apps games and much more.This toturiols series guide you complete basic to adavance and also provide you free project to work on it for your practice.
Characteristics of JAVA
- JAVA used to develop mobile apps ,web apps and games and much more
- Its free to download and open sourse
- Its work on almost all platforms
- It is easy to write script
- It perform all function read,write,create,update,delete ,open and close file on server
- It handle lage scale databases and perform various function
- Java is same as other programing langauges c++ and c#
Follow Steps
- Download java from google download here
- Install it on your computer or laptop
- Copy this path 'C:\Program Files\Java\jdk-11.0.1' where java jdk is installed
- Go to "System Properties" (Can be found on Control Panel > System and Security > System > Advanced System Settings)
- Click on the "Environment variables" button under the "Advanced" tab
- select the "Path" variable in System variables and click on the "Edit" button
- Click on the "New" button and add the path where Java is installed
- Now open XAMP Server from your installed app start APACHE and MYSQL first two services
- Now your java is installed successfully and path is added to enviorment variable
- Download Eclipse from google download here
- Installed in your computer or laptop
- Create new java project
- Write Code
- Click Start
Code
public class Main {
public static void main(String[] args) {
System.out.println("Helo World My First Script Is Running.Now I Feel Better");
}
}
0 Comments