Apache POI Excel Cell Alignment in Java

This Apache POI tutorial shows you about setting Excel cell Alignment in Java. The Apache POI is an open-source Java API library for manipulating the various Microsoft files format such as Excel, PowerPoint, and Word in Java. How to set Excel cell alignment using Apache POI? Steps to set Excel cell alignment in Java: Classes …

Apache POI Excel Cell Alignment in Java Read More »

Java JDK 8 Install on Windows 10 64 bit

JDK 8 install: In this article, you will see how you download and install JDK 8 in Windows 10. Here we will download the latest updated version 8u351(as of February 2023) of JDK 8 to install. The Java Development Kit (JDK) is a distribution of Java Technology by Oracle Corporation. It implements the Java Language …

Java JDK 8 Install on Windows 10 64 bit Read More »

Download JDK 19 and Install on Windows 11 (64-bit)

In this article, you will learn how to download JDK 19 for Windows and install JDK 19 on Windows 11 Operating System. To start developing Java applications, your system should have JDK (Java Development Kit) installed. This is the first step to start developing the Java application. NOTE: JDK is a java development kit whereas JRE is a java runtime environment that …

Download JDK 19 and Install on Windows 11 (64-bit) Read More »

Download JDK 19 and Install on Windows 10 (64-bit)

In this article, you will learn how to download JDK 19 for Windows and install JDK 19 on Windows 10 Operating System. To start developing Java applications, your system should have JDK (Java Development Kit) installed. This is the first step to starting developing the Java application. NOTE: JDK is a java development kit whereas JRE is a java runtime environment that …

Download JDK 19 and Install on Windows 10 (64-bit) Read More »

How to set JAVA_HOME environment variable on Windows 10

This article explains how to set JAVA_HOME environment variable on the Windows Operating system. The JAVA_HOME is an environment variable that points to the JDK (Java Development Kit) installation directory. Prerequisite Note: In this tutorial, we are taking the example of JDK 19 which is already installed on the Windows 10 Operating system. Why do …

How to set JAVA_HOME environment variable on Windows 10 Read More »

Java Random String | Generate random Strings

In this article, you will learn about Java random strings. There are multiple ways to generate random strings using Java programming. Here, you will see some simple ways and easy ways with examples to generate it using plain core Java. You will learn the following types of random Strings: Generate random alphabetic String of a …

Java Random String | Generate random Strings Read More »

Compare two Strings in Java

In this article, you will learn how to Compare two strings in Java. Strings are widely used in Java programming. It is a sequence of characters. In Java, String objects are immutable which means a constant and cannot be changed once created. This tutorial shows you total 6 ways to compare two Strings in Java: String …

Compare two Strings in Java Read More »

Dynamically create a drop-down list with jQuery

In this article, you will learn how to create a drop-down list (Combo box) dynamically using jQuery. The combo box is something that is created using <select> and <option> tag of HTML. Sometimes we are required to create options that come from somewhere else dynamically (run-time). This article shows you multiple examples to create a …

Dynamically create a drop-down list with jQuery Read More »

Convert CSV to JSON Javascript 2024

In this article, you will learn how to Convert CSV to JSON using Javascript. A CSV  file is a comma-separated value with a .csv extension, which allows users to store data in a tabular format. Each line of the file is a data record. Each record consists of one or more fields, separated by a delimiter …

Convert CSV to JSON Javascript 2024 Read More »