search
HomeJavajavaTutorialJava FileNotFoundException

Java FileNotFoundException is a type of exception that often occurs while working with File APIs in Java where the path specified for a file for reading or writing purposes in the constructor of classes FileInputStream, FileOutputStream, and RandomAccessFile, either does not exist or inaccessible due to an existing lock or other technical issues. This is a checked exception is a direct subclass of IOException that has been introduced with JDK 1.0. Also, it contains two types of constructors that can be called where one returns an Exception with a null message to display, whereas the other prints the specified message in case the exception occurs.

ADVERTISEMENT Popular Course in this category JAVA MASTERY - Specialization | 78 Course Series | 15 Mock Tests

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

Syntax:

public class FileNotFoundExceptionextends IOException
  • public: The keyword public refers to that the given class is accessible from any class in the project and needs to be inherited to throw an exception.

This class is a direct subclass of IOException, thus inheriting all the class’s methods and variables.

How FileNotFoundException work in Java?

FileNotFoundException is a checked exception is used that occurs when a file path specified for accessing does not exist or is inaccessible. With the checked exception, it means that the java compiler checks at compile time if this exception has been handled or not; otherwise, a compile-time error occurs. Let us see how the exception is thrown at run-time in case it has been handled using try-catch blocks or using throws keyword in its definition at compiler time.

Example:

File fileObj = new File("C:/JavaPractice.txt")

Suppose we instantiate a File class object as given above with a path of a file, and that file does not exist. In that case, when the compiler attempts to read or write the file and finds such a situation, it throws an exception and create an instance of FileNotFoundExceptionclass. In case it is not specified which constructor needs to be called, the constructor with no error message is thrown.

Thus the application fails with the below error:

Java FileNotFoundException

Constructors of Java FileNotFoundException

FileNotFoundException is a subclass of IOException that is very useful to trace if the file specified in the file path exists and even accessible. Thus for using this, one needs to instantiate it, and it is a public class; it can be instantiated from any where in the project. And for creating the instance of the class has 2 types of constructors.

Given below are the two types of constructors:

1. Constructor with no error message

This type of constructor is used to create an instance of FileNotFoundException class where it returns null as its error detail message.

Syntax:

public FileNotFoundException()

Example:

FileNotFoundExceptionexcepObj = new FileNotFoundException()

2. Constructor with an error message

This type of constructor is used to create an instance of FileNotFoundException class where it returns a specified string as its error detail message.

Syntax:

public FileNotFoundException(String s)

Example:

FileNotFoundExceptionexcepObj = new FileNotFoundException("This is a FileNotFoundException")

The error message specified can be easily retrieved using the Throwable.getMessage() method since this is one of the superclasses of FileNotFoundException class.

Examples of Java FileNotFoundException

Given below are the examples mentioned:

Example #1

Here we see how an exception is thrown by JVM if one file in inaccessible. In this, the error message displaying in output is one specified by default by JVM.

Code:

//package Proc;
import java.io.Console;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.PrintWriter;
public class prac1 {
public static void main(String[] args) {
File fileObj = new File("D:/JavaPractice.txt");
FileInputStream fISObj = null;
try{
fISObj = new FileInputStream(fileObj);
while (fISObj.read()!=-1){
System.out.println(fISObj.read());
}
}catch (FileNotFoundException e){
e.printStackTrace();
}catch (IOException e){
e.printStackTrace();
}
}
}

Output:

Java FileNotFoundException

Example #2

In this example, we will use the constructor with a specified error message to display the error when the file does not exist at the given path. We have used the throw keyword to throw the exception.

Code:

//package Proc;
import java.io.Console;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.PrintWriter;
public class prac1 {
public static void main(String[] args) throws FileNotFoundException,IOException{
File fileObj = new File("D:/JavaPractice.txt");
if(!fileObj.exists()){
throw new FileNotFoundException("This file doesnot exist in the path specified "+fileObj.toString());
}
else {
System.out.println("Welcome, we got into file "+fileObj.toString());
}
}
}

Output:

Java FileNotFoundException

How to avoid FileNotFoundException?

Getting a FileNotFoundException in an application makes an application inefficient. The first step to avoid this exception is to check if the specified file exists in at the specified path, but still, there might occur a situation in real-time applications that the file is missing or if other processes lock the file to be read to write into it.

Case 1: File is missing

To avoid this, one can use the java.io.File.exists() method to check if the file one attempts to read exist on the path specified or not. Using this, we must make sure if our code is able to handle the FileNotFoundException exception.

Case 2: File is inaccessible

To avoid such cases, one needs to take care if the file we are attempting to read is currently locked by other users writing it. For this we can use canRead() or canWrite() methods of java.io. File class that tells if the specified file is available for reading or writing purposes or not.

Using these 2 precautionary measures, one can easily avoid an attempt by an instance of file class to open a file that can result into a checked exception. This improves the efficiency of an application that includes a program to access files from a specified path.

Conclusion

FileNotFoundException is a type of checked exception that occurs once an attempt is made to the file that either does not exist or not accessible at that moment due to some lock. Since it is a checked exception java compiler ensures it has been handled at compile time. But still, if one needs to avoid it so they can use exist(), canRead() or canWrite() methods present in File class.

The above is the detailed content of Java FileNotFoundException. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?Apr 19, 2025 pm 11:45 PM

Start Spring using IntelliJIDEAUltimate version...

How to elegantly obtain entity class variable names to build database query conditions?How to elegantly obtain entity class variable names to build database query conditions?Apr 19, 2025 pm 11:42 PM

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

How to use the Redis cache solution to efficiently realize the requirements of product ranking list?How to use the Redis cache solution to efficiently realize the requirements of product ranking list?Apr 19, 2025 pm 11:36 PM

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...

How to safely convert Java objects to arrays?How to safely convert Java objects to arrays?Apr 19, 2025 pm 11:33 PM

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

How do I convert names to numbers to implement sorting and maintain consistency in groups?How do I convert names to numbers to implement sorting and maintain consistency in groups?Apr 19, 2025 pm 11:30 PM

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?Apr 19, 2025 pm 11:27 PM

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to set the default run configuration list of SpringBoot projects in Idea for team members to share?How to set the default run configuration list of SpringBoot projects in Idea for team members to share?Apr 19, 2025 pm 11:24 PM

How to set the SpringBoot project default run configuration list in Idea using IntelliJ...

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools