Found 7406 Articles for Java

Get Interior & Exterior Angle of Regular Polygon When Numbers of Sides of Polygon is Given in Java

Mr. Satyabrata
Updated on 17-Aug-2023 17:17:31

125 Views

A polygon is a 2-dimensional closed shape that has at least 3 sides. Depending on the number of sides, relationships of the sides and angles, and other characteristics, polygons can be classified under different names like triangles, squares, and quadrilaterals. An interior angle of a polygon is an angle formed inside the two adjacent sides of a polygon. Exterior angle is defined as the angle formed between a side of triangle and an adjacent side extending outward. In this article, we will find interior and exterior angle of regular polygon when numbers of sides of polygon is ... Read More

How to Know the Separator for a Particular File System in Java

Mr. Satyabrata
Updated on 17-Aug-2023 17:13:07

1K+ Views

In Java, the file separator is a character that separates the components of a file path. The file separator varies depending on the operating system on which the Java program is running. On Windows systems, the file separator is backslash (\). On Unix-based systems (such as Linux and macOS), the file separator is forward slash (/). Let's start! For instance Suppose that we running the code on windows system After performing the operation to get the separator, the result will be: Separator for this file system is: \ Algorithm Step-1: Import the necessary libraries. ... Read More

Check If a Particular File System is Open or Not in Java

Mr. Satyabrata
Updated on 18-Aug-2023 09:15:39

1K+ Views

In Java, a file system is a hierarchical structure used to organize and store files and directories on a storage device. It provides a standard way to access and manipulate files and directories, regardless of the underlying storage device, such as a hard disk, USB drive, or cloud storage. Java provides the java.nio.file package, which contains classes and interfaces for working with file systems. The FileSystem interface represents a file system, and its FileSystems class provides factory methods for creating instances of FileSystem. You can check if a particular file system is open or not by using the FileSystem ... Read More

How to Know the File Store Type in Java?

Mr. Satyabrata
Updated on 17-Aug-2023 17:09:04

230 Views

In Java, the java.nio.file.FileStore class represents a storage pool, device, partition, volume, or other implementation-specific means of file storage. The FileStore class provides methods for querying information about the storage device, such as its total and available space, its file system type, and whether it supports certain features like file attributes or symbolic links. The type() method of the FileStore class returns a string representing the file store type. The file store type is a string that identifies the type of file system used by the file store. Examples of file system types include "NTFS" for the Windows NT ... Read More

How to Know Where the Actual File is Getting Stored in Java?

Mr. Satyabrata
Updated on 17-Aug-2023 17:03:44

174 Views

In Java, you can use the File class to represent and manipulate file and directory paths. You can also use the File class to create, delete, and manipulate files and directories. To know where the actual file is getting stored in Java, you can use the getAbsolutePath() method of the File class. This method returns a string representation of the absolute path of the file, which includes the full path from the root directory to the file. Let's deep dive into the article to see where the actual file is getting saved in Java. For instance ... Read More

Interesting interview question on hashCode and equals method

Shriansh Kumar
Updated on 17-Aug-2023 10:27:15

800 Views

One of the most interesting interview questions that I have encountered in my Java programming career is about the hashCode and equals methods. Interviewers always check whether the candidate knows equals() and hasCode() methods as they are the most important yet most confusing methods of the Java Object class. Both methods are used to check the equality of two or more objects. This article aims to provide some interesting interview questions related to hashCode() and equals() methods that will improve one's knowledge as well as skills. Java Interview Questions on hashCode() and equals() method When an interviewer starts questioning about ... Read More

Interesting and Cool Tricks in Java

Shriansh Kumar
Updated on 17-Aug-2023 09:59:56

230 Views

Java is a widely used programming language available nowadays. It serves to develop a variety of software including web and mobile applications. It is also preferable when it comes to developing a backend system. Java has made tremendous progress over the year that has changed the world. This is the reason why the demand for Java developers is still in the market. Being a Java developer, one might be interested in learning some cool tricks that can make the code more elegant, efficient and fun. In this article, we are going to share some useful tricks that we can use ... Read More

Is there any equivalent to typedef of C/C++ in Java?

Shriansh Kumar
Updated on 17-Aug-2023 09:57:11

790 Views

We can find many similarities between Java and C/C++ programming languages in terms of syntaxes and features. But, there are several functionalities that have been omitted from Java like 'typedef'. If someone coming from a C/C++ background, must have heard the 'typedef' keyword, and often wonders, is there any equivalent to typedef in Java? In simple words, Java does not provide a direct equivalent to typedef. The creators of Java replaced this feature with classes. In fact, a class can do even more than a typedef can do. Replacement to typedef of C/C++ in Java? Before exploring the ... Read More

Java @Target Annotations

Shriansh Kumar
Updated on 23-Jul-2024 18:51:00

2K+ Views

When we start learning Java, we often wonder about symbols like @override and @inherited written within the code blocks. They are a special kind of tag termed as Annotations that can be applied to classes, methods, fields, parameters, and other elements of the code. The @Target annotation is one of the types of meta-annotations that specifies the defined annotation type applicable to which code block element. Don't get confused by these terms, we will clear all the doubts and confusion as we move forward in this article. The @Target Annotation of Java The first thing we need to understand is ... Read More

Iterate Over Unmodifiable Collection in Java

Shriansh Kumar
Updated on 17-Aug-2023 09:49:19

455 Views

Being a programmer we must have developed an application that performs CRUD operations. Here, the term CRUD means Create, Read, Update and delete. The collection on which these operations can be performed is called as modifiable collection. However, there is a way to make a collection unmodifiable so that one cannot make any changes to the original collection. Although we can't alter the elements, we can iterate over this collection. To iterate over unmodifiable collections in Java, we can use either the for-each loop or iterator(). Let's discuss it in detail. Iterate Over Unmodifiable Collection in Java As mentioned earlier, ... Read More

Advertisements