Posts from Java

Creating a simple calculator using Java AWT

By Sneha Mitra

In this Java tutorial, we will learn about the Java AWT(Abstract Window Toolkit). As a result, using this concept we will learn how to build a simple calculator using Java AWT. Thi.... Read More

How to find the Smallest element in binary tree in Java

By Mayank Garg

In this program, we will search for the smallest element in the binary tree. Here, we have traversed the tree for searching the number. There are many steps are included to find th.... Read More

How to create a Word Count program with java swing and AWT

By Mayank Garg

In this program, we will create a simple word count app by using swing in java. In this app, we will count the word in the text area & also change the color of the text. Althou.... Read More

How to search a node in binary tree using java

By Mayank Garg

In this program, we will learn how to search a node in a binary tree in Java. First, we will learn what is a binary tree. A binary is a different type of data structure. In the bin.... Read More

How to use AWT JPopupMenu and AWT choice bar in Java

By Mayank Garg

In this program, we will learn about the two important predefined classes. Which provides the many methods for creating an attractive and easy swing program. These classes are-: AW.... Read More

Constructing a max heap using java

By Sneha Mitra

In this post, we will learn about max heap trees and how to create max heap tree in Java. Definition of a max heap tree: In a max heap tree, the root of the tree has the maximum el.... Read More

How to create file / folder explorer with java

By Mayank Garg

In this program, we will create a file explorer in java swing. We will use many classes, methods, etc with the use of folder explorer we can manage each file of the system. To crea.... Read More

How to find IP Address of any url using Java

By Mayank Garg

In this program, We will find the IP address of any URL in java. We will use many methods that get the host address of any URL. A few things are a must in this program. getHostAddr.... Read More