Posts from Java

How To Detect Operating System In Java

By Shubham Kumar

In this instructional exercise, you will learn about how to detect which type of operating system you are using in your system in Java. In the event, if you don’t know how to.... Read More

How To Hide A File In Java

By Shubham Kumar

In this tutorial, we will be discussing on how to hide a file in Java through an easy and simple program. We will also show if the file is hidden or not. The reason a few records a.... Read More

Gauss Legendre algorithm in java

By Anubhav Srivastava

Hi, coders! Mathematics is a very important part in the life of coders. As you all know there are so many  Mathematics algorithms that we implement through code. In this tutorial,.... Read More

How to Generate Anagrams in Java

By Shubham Kumar

In this instructional exercise, we will find how to generate anagrams of a string in Java.  We can also say that we will write a Java program to print all permutations of a given .... Read More

How to crop an image in Java

By Shivank Maheshwari

Hi guys, today we will learn how to crop an image in Java. First of all, we should know what is cropping an image means? So cropping of an image means getting a sub-image from the .... Read More

Reverse individual words in a string or sentence in Java.

By Shakshi Parekh

In this context, we are going to learn how to reverse individual words in a string or sentence in Java. So the user has to Enter the Input eg: Java is object oriented language so t.... Read More

How to count the number of commas in a given string in Java

By Yanamandra Valli

In this tutorial, we will learn how to count the number of commas in the given string in Java. Now we know that in Java, a string is a combination of alphabets, numbers, special ch.... Read More

Remove Duplicates from array in Java using collection

By Zeyan Ansari

In this tutorial, we will learn how to remove duplicates from an array in Java using collection. we will use list interface in java. It is a child interface of collection. It is an.... Read More

Related Posts