Concepts of Core Java
What is Java
Java Tutorial or Core Java Tutorial or Java Programming Tutorial is a widely used robust technology. Let's start learning of java from basic questions like what is java tutorial, core java, where it is used, what type of applications are created in java and why use java.
Java is a programming language and a platform.
Java is a high level, robust, secured and object-oriented programming language.
Platform: Any hardware or software environment in which a program runs, is known as a platform. Since Java has its own runtime environment (JRE) and API, it is called platform.
Java Example
Let's have a quick look at java programming example. A detailed description of hello java example is given in next page.
Where it is used?
According to Sun, 3 billion devices run java. There are many devices where java is currently used. Some of them are as follows:
- Desktop Applications such as acrobat reader, media player, antivirus etc.
- Web Applications such as irctc.co.in, javatpoint.com etc.
- Enterprise Applications such as banking applications.
- Mobile
- Embedded System
- Smart Card
- Robotics
- Games etc.
Types of Java Applications
There are mainly 4 type of applications that can be created using java programming:
1) Standalone Application
It is also known as desktop application or window-based application. An application that we need to install on every machine such as media player, antivirus etc. AWT and Swing are used in java for creating standalone applications.
2) Web Application
An application that runs on the server side and creates dynamic page, is called web application. Currently, servlet, jsp, struts, jsf etc. technologies are used for creating web applications in java.
3) Enterprise Application
An application that is distributed in nature, such as banking applications etc. It has the advantage of high level security, load balancing and clustering. In java, EJB is used for creating enterprise applications.
4) Mobile Application
An application that is created for mobile devices. Currently Android and Java ME are used for creating mobile applications.
जावा को कमपाइल और रन कैसे करते है
जावा सोर्स कोड को कमपाईल करना
जावा की कृतिम मशीन के, जावा प्रोग्राम को रन करने से पहले हमे जावा सोर्स कोड को byte code में कमपाईल करना पड़ता है | कमपाईल करने का काम जावाक (javac) कमपाईलर करता है | जावा का byte code प्लेटफार्म से स्वछंद(platform independent) होता है | प्लेटफार्म से स्वछंदता का मतलब यह है की इसको कोई फर्क नहीं पड़ता की आप कौन सा कंप्यूटर चला रहे है , विंडोज का , युनीक्स का या फिर मेक |
आप में से कही के दिमाग में यह प्रशन उठा होगा की जावा प्लेटफार्म से स्वछंद क्यों होता है ?
इसका सीधा सा उत्तर है : जावा वर्तुअल मशीन (Java Virtual Machine). जिसे हम JVM और में कृतिम मशीन कहता हूँ | इस मशीन के नाम से ही आपको यह स्पष्ट हो गया होगा की यह एक कृतिम मशीन है
जो सिर्फ जावा को प्लेटफोर्म से स्वछंद करने के लिए ही बनाई गयी है | जावा का byte code इसी मशीन के लिए लिखा जाता है | और यह मशीन सभी प्लात्फोर्म पर समान रूप से काम करती है | इसे अलग शब्दों में
हम यह कह सकते है , JVM एक हमारी मशीन और जावा के बीच की एक परत है |
अब हम देख्नेगे की जावा के प्रोग्राम को कमपाईल कैसे करते है | माना की प्रोग्राम का नाम Xyz.java (प्रोग्राम का पहला अक्षर हमेशा बड़ा होगा) है |
अब देखिये इसको कमपाईल करने का कमांड
Windows
c:/> javac Xyz.java
In Linux
% javac Xyz.java
अगर सौर्स कोड में कोई error नहीं होगा तो जावा एक या कही क्लास फाइल बनाएगा | हर क्लास फाइल ,प्रोग्राम की एक क्लास के लिए होगी ,जैसे प्रोग्राम में दो क्लास है तोह यह दो क्लास फाइल बनाएगा |ऊपर दिए प्रोग्राम के लिए यह Xyz.class नाम की फाइल बनाएगा |
जावा प्रोग्राम को रन करने का तरीका
एक बार Java source code को सफलता पूर्वक कमपाईल करने के बाद आप जावा की कृतिम मशीन को प्रोग्रम byte code को रन करने का कमाड दे सकते है |
जैसे
Windows
c:/> java Xyz.java
No comments:
Post a Comment