Category: Java Tutorials

url class in java 0

URL Class in Java

Anybody who uses the internet these days would have come across a URL. It is a unique string of text that is an identity for the resources available on the internet. To put it...

socket programming in java 0

Socket Programming in Java

You might be quite anxious while getting to know about sockets in Java. But once, the concepts become crystal clear to you, there is no more difficulty in it. To give a short introduction...

collections class in java 0

Collections Class in Java

The Collection class in Java is used with various static methods to perform the desired task. In this article, you will get to know brief details about those methods in the Java Collections class....

file handling in java 0

File Handling in Java

In general terms, a file is a collection of information. In Java, a file is an abstract type that stores related information together. This article will let you know about the file and its...

functional interfaces in java 0

Functional Interface in Java

In this article, we will learn about functional interface in java. Let’s start!!! What is the functional interface in java? Interfaces that comprise only one abstract method are called functional interfaces. Though there can...

interface in java 0

Interface in Java with Examples

As an object-oriented programming language, Java provides various features for programmers regarding the security of the code. One such feature is the abstraction that is attained via using an interface. This is where interface...

garbage collection in java 0

Garbage Collection in Java

In this article, we will learn about Garbage Collection in Java. Let’s start!!! Garbage Collection in Java The concept of “garbage collection” plays an indispensable role in managing memory. Removing unwanted memory allocation from...

iterators in java 0

Iterator in Java with Example

The Java iterator comes under the concept of Java Cursors. As the name suggests, it iterates a collection or stream of objects one by one. This segment of the article lets you dive deep...

reflectors in java 0

Reflection API in Java

The term reflection or reflector has a different meaning depending on the context they revolve around. Here in Java, reflection is an API that examines or modifies the behaviors of methods, classes and interfaces...

deadlock in java 0

Deadlock in Java

In this article, we will learn about the deadlock concept in Java. Let’s start!!! What is a deadlock? As mentioned earlier, deadlock comes with multi-threading. It occurs when multiple threads request for the same...