Posts from Java

Get The Current Time In Java

By Shubham Kumar

In this tutorial, you will know how to get the current time by using java code with a simple example. To know the current time is very important when you need to know the current t.... Read More

Check if a website exists or not in Java

By Vedant Nandkumar

In this Java program, we check whether a URL is valid or not i.e whether the website exists or not. To start the implementation, we follow the following steps: We input the URL whi.... Read More

Java program to convert Decimal into Hexadecimal

By Vedant Nandkumar

This program is used to convert a decimal number into a hexadecimal number in Java. A Decimal number employs 10 as a base and represents any number using 10 digits [0-9]. While A H.... Read More

Remove Duplicate words in a sentence using Java

By Vedant Nandkumar

This program is used to remove words which are repeated in a sentence in order to reduce the duplicate words and reduce the sentence length. Duplicate words add redundancy to the s.... Read More

How to break a string into characters in Java?

By Yashas

In this tutorial, we will learn how to break(or split) a String into characters. The end result can be an array of characters or an array of Strings which contain characters. Below.... Read More

Java Program To write Data In Excel File

By Shubham Kumar

In this instructional exercise, you will perceive how to compose on an exceed expectations sheet by utilizing Java. Or in easy words, you will learn, how to write data or insert da.... Read More

Java Program to find Volume and Surface Area of a Cylinder

By Tanisha Saxena

In this tutorial, we will see how to write a java program to find the volume and surface area of any given cylinder. Before we begin, let us first see the definition and formulas u.... Read More

Subtraction of two matrices in java

By Himaja Chinni

In this tutorial, we will learn how to subtract two matrices with good logic. Subtraction of two matrices in Java will be helpful in many applications of two-dimensional arrays. Yo.... Read More

Related Posts