Skip to main content

Socket (TCP & UDP) communication in Java

Socket communication in Java enables communication between two endpoints over a network. There are two main types of sockets: TCP sockets and UDP sockets. Let's explain both types with examples: TCP Socket Communication: 1. **Server Side**:    - The server creates a `ServerSocket` object to listen for incoming connections on a specific port.    - When a client connects, the server accepts the connection and creates a `Socket` object to communicate with the client.    - The server reads from and writes to the socket's input and output streams to communicate with the client. import java.io.*; import java.net.*; public class TCPServer {     public static void main(String[] args) throws IOException {         ServerSocket serverSocket = new ServerSocket(12345);         System.out.println("Server started. Waiting for client...");         Socket clientSocket = serverSocket.accept();         System.out.println("Client connected.");         BufferedReader in = new Bu

Getter and setter methods

Getter and setter methods, also known as accessor and mutator methods, are used to retrieve and modify the values of private variables (fields) in a class. They provide controlled access to the class attributes, allowing encapsulation and maintaining data integrity. Here's an example demonstrating getter and setter methods in Java:


public class Person {

    private String name;

    private int age;


    // Getter method for the name attribute

    public String getName() {

        return name;

    }


    // Setter method for the name attribute

    public void setName(String name) {

        this.name = name;

    }


    // Getter method for the age attribute

    public int getAge() {

        return age;

    }


    // Setter method for the age attribute

    public void setAge(int age) {

        if (age >= 0 && age <= 120) { // Validate age

            this.age = age;

        } else {

            System.out.println("Invalid age! Age should be between 0 and 120.");

        }

    }


    public static void main(String[] args) {

        Person person1 = new Person();

        person1.setName("Alice");

        person1.setAge(30);


        // Retrieve and display the person's name and age

        System.out.println("Person 1 - Name: " + person1.getName() + ", Age: " + person1.getAge());


        Person person2 = new Person();

        person2.setName("Bob");

        person2.setAge(-5); // Invalid age


        // Retrieve and display the person's name and age

        System.out.println("Person 2 - Name: " + person2.getName() + ", Age: " + person2.getAge());

    }

}


In this example:


We have a class Person with private attributes name and age.

Getter methods (getName and getAge) are used to access the values of these attributes from outside the class.

Setter methods (setName and setAge) are used to modify the values of these attributes. The setAge method includes validation to ensure that the age is within a valid range.

In the main method, we create two Person objects, set their attributes using setter methods, and retrieve their attributes using getter methods.

_____________________________________



If you're using constructor-based initialization for private attributes, the structure of the class and the way you initialize the attributes will be slightly different. In this approach, you would typically provide a constructor that accepts parameters for initializing the private attributes. Here's how you can modify the Person class to use constructor-based initialization:


public class Person {

    private String name;

    private int age;


    // Constructor with parameters for initializing name and age

    public Person(String name, int age) {

        this.name = name;

        if (age >= 0 && age <= 120) {

            this.age = age;

        } else {

            System.out.println("Invalid age! Age should be between 0 and 120.");

        }

    }


    // Getter method for the name attribute

    public String getName() {

        return name;

    }


    // Getter method for the age attribute

    public int getAge() {

        return age;

    }


    public static void main(String[] args) {

        // Create Person objects using the constructor

        Person person1 = new Person("Alice", 30);

        Person person2 = new Person("Bob", -5); // Invalid age


        // Retrieve and display the person's name and age using getter methods

        System.out.println("Person 1 - Name: " + person1.getName() + ", Age: " + person1.getAge());

        System.out.println("Person 2 - Name: " + person2.getName() + ", Age: " + person2.getAge());

    }

}


In this modified version:


We've removed the setter methods since the attributes are initialized through the constructor and can't be modified afterwards.

The constructor Person(String name, int age) takes parameters name and age, initializes the private attributes name and age accordingly, and performs age validation.

When creating Person objects in the main method, we provide the values for name and age directly as arguments to the constructor.


Comments

Popular posts from this blog

Method Overloading in Java

Method Overloading in Java Method Overloading  is a feature in Java that allows a class to have multiple methods with the same name but different parameter lists. The methods can have a different number or types of parameters. The decision on which method to invoke is made by the compiler based on the arguments provided during the method call.  Example: public class Calculator {     // Method to add two integers     public int add(int a, int b) {         return a + b;     }     // Method to add three integers     public int add(int a, int b, int c) {         return a + b + c;     }     // Method to add two doubles     public double add(double a, double b) {         return a + b;     }     // Method to concatenate two strings     public String concatenate(String str1, String str2) {         return str1 + str2;     } } Method Overloading in Action: public class Main {     public static void main(String[] args) {         Calculator calculator = new Calculator();         // Overloaded meth

Java Runtime Environment (JRE)

Definition : Java Runtime Environment (JRE) is a set of software tools and libraries that enables the execution of Java applications. It provides the necessary runtime support for Java programs to run on various devices and platforms. Components of Java Runtime Environment (JRE): Java Virtual Machine (JVM): Definition: The JVM is a crucial component of the JRE responsible for executing Java bytecode. Functionality: It interprets Java bytecode or, in some cases, uses Just-In-Time (JIT) compilation to translate bytecode into native machine code for improved performance. Importance: JVM abstracts the underlying hardware, allowing Java programs to be platform-independent. Class Libraries: Definition: JRE includes a set of precompiled classes and methods that Java applications can utilize. Functionality: These classes cover a wide range of functionalities, from basic data structures to networking. Importance: Class libraries provide a foundation for developers, offering reusable code