Posts from Java

Online Voting System GUI in Java using Swing

By Debdeep Das

This blog presents a tutorial on how to make an Online Voting System using Java. The project uses Java Swing. Java Swing is an API that provides measures to create Java GUI applica.... Read More

Check whether an element is present in an array or not in Java

By Veda Charitha

In this tutorial, we are going to check whether an element is present in an array or not in Java. To do this, various search techniques can be implemented like linear search (one o.... Read More

How to generate random numbers using a seed in Java

By Barshan Paul

In this problem, we will learn how to generate random numbers using a seed in Java. So what are random numbers? Some numbers have no correct sequence on how it is being produced an.... Read More

Find k-th missing element in increasing sequence in Java

By Dishi Jain

In this tutorial, we will see how to find kth missing element in an increasing sequence that is not present in a given sequence in Java. Finding the kth missing element in an incre.... Read More

How to Maximize and Minimize Jframe Window

By Saruque Ahamed Mollick

In this tutorial, we will learn how to maximize and minimize JFrame window. We will also see how to do this with button clicks. To maximize a JFrame window, you can use the setExte.... Read More

Java String split() method with examples

By Satyam Chauhan

In this tutorial, we are going to learn about the Java String split() method with examples. It is one of the predefined methods in the Java String class. The basic purpose of this .... Read More

Weather Application in Java with MySQL using OpenWeather API

By Laksh Singhal

Do you want to develop a Java application which fetches the current weather of any city at that exact moment and prints it on a webpage for you? Follow the underlying steps and bui.... Read More

Sort an array in wave form in Java

By Kunal Kamble

In this tutorial we will study sorting the array in the form of a wave termed wave sort and write code for it in Java. The term wave itself is self-explanatory that the element of .... Read More

Related Posts