Friday, October 6, 2023

Java and Internet जावा और इंटरनेट

The Internet is a vast network that connects computers around the world. Internet is said to be a network of many networks i.e. it contains various types of public, private, educational, commercial and local to global level networks.
इंटरनेट एक विशाल नेटवर्क है जो दुनिया भर के कंप्यूटरों को जोड़ता है। इंटरनेट को कई नेटवर्क का एक नेटवर्क कहा  जाता है है अर्थात इसमें विभिन्न प्रकार के  सार्वजनिक, निजी, शैक्षणिक, व्यावसायिक और स्थानीय से वैश्विक स्तर के नेटवर्क उपस्थित होते हैं। 

Through the Internet, we can share information and communicate with other people from anywhere in the world. These are linked to a wide range of technologies such as electronic, wireless and optical networking.
इंटरनेट के माध्यम से, हम दुनिया में कहीं से भी जानकारी साझा कर सकते हैं और अन्य लोगो के साथ संवाद कर सकते हैं। यह  इलेक्ट्रॉनिक, वायरलेस और ऑप्टिकल नेटवर्किंग इत्यादि प्रौद्योगिकियों की एक व्यापक व्यवस्था से जुड़े होते हैं।
 
It works by using a packet routing network that follows the Internet Protocol (IP) and Transport Control Protocol (TCP). Internet is mainly being used in electronic mail (email), file transfer, search engine, e-commerce, social networking, online banking, education etc.
यह एक पैकेट रूटिंग नेटवर्क का उपयोग करके काम करता है जो इंटरनेट प्रोटोकॉल (आईपी) और परिवहन नियंत्रण प्रोटोकॉल (टीसीपी) का पालन करता है। इंटरनेट का उपयोग मुख्यतः इलेक्ट्रॉनिक मेल (ईमेल) , फ़ाइल स्थानांतरण, खोज यन्त्र, ई-कॉमर्स, सोशल नेटवर्किंग, ऑनलाइन बैंकिंग, शिक्षा इत्यादि में किया जा रहा है।

Java is tightly linked to the Internet. An Internet user can use Java to create an applet program and then run it locally using a Java-enabled browser such as Hot Java, Net Escape Navigator, Internet Explorer, etc. 
जावा इंटरनेट से दृढ़ता से जुड़ा हुआ है एक इंटरनेट उपयोगकर्ता जावा का उपयोग एप्लेट प्रोग्राम बनाने के लिए कर सकता हैं और इसके पश्चात् वह इसे स्थानीय रूप से जावा-सक्षम ब्राउज़र जैसे हॉट जावा, नेट एस्केप नेविगेटर, इन्टरनेट एक्स्प्लोरर इत्यादि का उपयोग करके रन कर सकता हैं।

Java applets have made the Internet a de facto extension of the local computer's storage system.
जावा एप्लेट्स ने इंटरनेट को स्थानीय कंप्यूटर के स्टोरेज सिस्टम का वास्तविक विस्तार बना दिया है।

No comments:

Post a Comment

Java program to implement file input stream class to read binary data from image file.

import java.io.FileInputStream; import java.io.IOException; public class ReadImageFile {     public static void main(String[] args) {       ...