Bamdeb Ghosh has Published 33 Articles

Java notify() Method in Threads Synchronization with Examples

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 04-Oct-2023 18:42:37

133 Views

Introduction The Object class contains a definition for the notify () method. Only one thread that is waiting for an item is wakes up by it and that thread then starts to run. A single thread can be awakened using the notify () method of the thread class. When using ... Read More

Java Multicasting (Typecasting multiple times) Puzzle

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 04-Oct-2023 18:39:35

93 Views

Introduction Java Multicasting known as typecasting multiple times. It is the process of converting a value from one data type to another and it involves multiple typecasting conversions. It allows us to change the data type of a variable to perform operations that would not be possible otherwise. Let us ... Read More

Java Method Parameters

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 04-Oct-2023 18:35:39

143 Views

Introduction We know that Java Method Parameters are variables used in method declarations to accept inputs and enable the methods to work with data that are dynamic. Let us discuss the Java Method Parameters and their use in making methods reusable and adaptable. We will discuss the importance of data ... Read More

Java JSON Processing (JSON-P) with Example

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 04-Oct-2023 18:14:08

100 Views

Introduction Java programs can operate with JSON data due to the strong Java JSON Processing (JSON-P) API. Web servers and clients frequently exchange data using the lightweight JSON data transfer standard. JSON-P offers the Object Model API and the Streaming API as its two primary methods for processing JSON data. ... Read More

Update a Column in a Table using Java JDBC

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 04-Oct-2023 18:04:18

168 Views

Introduction Updating a column in a database table is a relatively frequent activity in software development. Java Database Connectivity (also known as JDBC API), which serves as a link between Java programmers and databases like MySQL, may be used to carry out this task in Java. Using the JDBC API, ... Read More

What's the best RESTful web framework to use with Java

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 04-Oct-2023 17:58:55

63 Views

Introduction Let us talk about what’s the best Java RESTful web framework to use with Java language. We know there are a lot of frameworks available but the “Spring Boot” is the best choice among other Java frameworks. Here we will talk about the usage of the RestTemplate and ... Read More

Does it make sense to choose JavaScript instead of Java for server-side programming and why

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 04-Oct-2023 17:54:22

55 Views

Introduction We know that over a period of time JavaScript has gained popularity for its versatility and it’s easy to use. Java remains a top choice for server-side programming due to its reliability, scalability, and large ecosystem. Let us discuss about why choosing Java as a server-side programming language over ... Read More

Is Java dying at the hands of Oracle What future is there for Java?

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 04-Oct-2023 15:47:55

86 Views

Introduction Java is a widely used programming language since 1995 and Java has played a very important role in software development. Although there are many issues regarding its future due to events involving Oracle. Let us discuss these concerns and explore different viewpoints surrounding future of Java. We will explain ... Read More

Linux Commands Using Secure Shell (ssh)

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 14-Jul-2023 17:12:23

523 Views

Introduction There are many ways we can access or communicate between two systems [Linux to Linux, Windows to Linux] through CLI. Secure Shell (ssh) is very useful tool to access any other Linux system. If two Linux systems are connected through any network then we can use ssh to access ... Read More

How to Pass Command Line Arguments to Bash Script

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 14-Jul-2023 17:10:29

279 Views

Introduction For Linux system administrators and developers, the ability to write Bash scripts is important. It enables us to automate routine processes and carry out difficult ones with little effort. One of the most crucial aspects of bash scripting is the ability to give information to a script as it ... Read More

Advertisements