【Java】解决Java报错:FileNotFoundException

在这里插入图片描述

文章目录

      • 引言
      • 1. 错误详解
      • 2. 常见的出错场景
        • 2.1 文件路径错误
        • 2.2 文件名拼写错误
        • 2.3 文件权限问题
        • 2.4 文件路径未正确拼接
      • 3. 解决方案
        • 3.1 检查文件路径
        • 3.2 使用相对路径和类路径
        • 3.3 检查文件权限
        • 3.4 使用文件选择器
      • 4. 预防措施
        • 4.1 使用配置文件
        • 4.2 使用日志记录
        • 4.3 使用单元测试
        • 4.4 使用相对路径和类路径
      • 5. 示例项目
        • 5.1 项目结构
        • 5.2 Main.java
        • 5.3 ConfigReader.java
        • 5.4 LoggerConfig.java
        • 5.5 config.properties
        • 5.6 logging.properties
      • 6. 单元测试
        • 6.1 MainTest.java
      • 结语

引言

在Java编程中,FileNotFoundException 是一种常见的受检异常,通常发生在试图打开一个不存在的文件或文件路径错误时。这类错误提示为:“FileNotFoundException: [file path] (No such file or directory)”,意味着程序无法找到指定的文件。本文将详细探讨FileNotFoundException的成因、解决方案以及预防措施,帮助开发者理解和避免此类问题,从而提高代码的健壮性和可靠性。

1. 错误详解

FileNotFoundException 是一种由 Java 运行时环境抛出的异常,表示程序试图访问一个不存在的文件或目录。该异常是 IOException 的子类,属于受检异常,必须在代码中显式处理。

2. 常见的出错场景

2.1 文件路径错误

最常见的情况是文件路径错误,导致JVM在运行时无法找到所需的文件。

import java.io.*;public class Main {public static void main(String[] args) {try {FileReader reader = new FileReader("nonexistentfile.txt");  // 文件路径错误,将抛出FileNotFoundException} catch (FileNotFoundException e) {System.out.println("文件未找到: " + e.getMessage());}}
}
2.2 文件名拼写错误

文件名拼写错误也会导致FileNotFoundException

import java.io.*;public class Main {public static void main(String[] args) {try {FileReader reader = new FileReader("example.tx");  // 文件名拼写错误,将抛出FileNotFoundException} catch (FileNotFoundException e) {System.out.println("文件未找到: " + e.getMessage());}}
}
2.3 文件权限问题

文件权限不足,导致程序无法访问文件。

import java.io.*;public class Main {public static void main(String[] args) {try {FileReader reader = new FileReader("/root/secretfile.txt");  // 文件权限不足,将抛出FileNotFoundException} catch (FileNotFoundException e) {System.out.println("文件未找到或权限不足: " + e.getMessage());}}
}
2.4 文件路径未正确拼接

在构建文件路径时未正确拼接,导致路径错误。

import java.io.*;public class Main {public static void main(String[] args) {String directory = "/home/user/";String filename = "example.txt";String filepath = directory + filename;  // 拼接文件路径try {FileReader reader = new FileReader(filepath);} catch (FileNotFoundException e) {System.out.println("文件未找到: " + e.getMessage());}}
}

3. 解决方案

解决FileNotFoundException的关键在于确保文件路径正确,文件存在,并且程序具有访问权限。

3.1 检查文件路径

在访问文件之前,检查文件路径是否正确,并确保文件存在。

import java.io.*;public class Main {public static void main(String[] args) {String filepath = "example.txt";File file = new File(filepath);if (file.exists()) {try {FileReader reader = new FileReader(filepath);BufferedReader br = new BufferedReader(reader);String line;while ((line = br.readLine()) != null) {System.out.println(line);}br.close();} catch (IOException e) {System.out.println("读取文件时发生错误: " + e.getMessage());}} else {System.out.println("文件未找到: " + filepath);}}
}
3.2 使用相对路径和类路径

确保使用正确的相对路径或类路径访问文件,避免硬编码绝对路径。

import java.io.*;
import java.net.URL;public class Main {public static void main(String[] args) {ClassLoader classLoader = Main.class.getClassLoader();URL resource = classLoader.getResource("example.txt");if (resource != null) {try {FileReader reader = new FileReader(resource.getFile());BufferedReader br = new BufferedReader(reader);String line;while ((line = br.readLine()) != null) {System.out.println(line);}br.close();} catch (IOException e) {System.out.println("读取文件时发生错误: " + e.getMessage());}} else {System.out.println("文件未找到");}}
}
3.3 检查文件权限

确保程序具有访问文件的权限,特别是在需要读取或写入系统文件时。

import java.io.*;public class Main {public static void main(String[] args) {String filepath = "/root/secretfile.txt";File file = new File(filepath);if (file.exists() && file.canRead()) {try {FileReader reader = new FileReader(filepath);BufferedReader br = new BufferedReader(reader);String line;while ((line = br.readLine()) != null) {System.out.println(line);}br.close();} catch (IOException e) {System.out.println("读取文件时发生错误: " + e.getMessage());}} else {System.out.println("文件未找到或无访问权限: " + filepath);}}
}
3.4 使用文件选择器

使用文件选择器(如JFileChooser)选择文件,避免手动输入路径错误。

import javax.swing.*;
import java.io.*;public class Main {public static void main(String[] args) {JFileChooser fileChooser = new JFileChooser();int result = fileChooser.showOpenDialog(null);if (result == JFileChooser.APPROVE_OPTION) {File file = fileChooser.getSelectedFile();try {FileReader reader = new FileReader(file);BufferedReader br = new BufferedReader(reader);String line;while ((line = br.readLine()) != null) {System.out.println(line);}br.close();} catch (IOException e) {System.out.println("读取文件时发生错误: " + e.getMessage());}} else {System.out.println("未选择文件");}}
}

4. 预防措施

4.1 使用配置文件

使用配置文件(如properties文件)存储文件路径,避免硬编码路径。

import java.io.*;
import java.util.Properties;public class Main {public static void main(String[] args) {try {Properties properties = new Properties();properties.load(new FileInputStream("config.properties"));String filepath = properties.getProperty("filepath");FileReader reader = new FileReader(filepath);BufferedReader br = new BufferedReader(reader);String line;while ((line = br.readLine()) != null) {System.out.println(line);}br.close();} catch (IOException e) {System.out.println("读取文件时发生错误: " + e.getMessage());}}
}
4.2 使用日志记录

在程序中使用日志记录文件访问的尝试和错误,帮助调试和定位问题。

import java.io.*;
import java.util.logging.*;public class Main {private static final Logger logger = Logger.getLogger(Main.class.getName());public static void main(String[] args) {String filepath = "example.txt";File file = new File(filepath);if (file.exists()) {try {FileReader reader = new FileReader(filepath);BufferedReader br = new BufferedReader(reader);String line;while ((line = br.readLine()) != null) {System.out.println(line);}br.close();} catch (IOException e) {logger.log(Level.SEVERE, "读取文件时发生错误", e);}} else {logger.log(Level.WARNING, "文件未找到: " + filepath);}}
}
4.3 使用单元测试

编写单元测试来验证文件访问的正确性,确保代码在各种边界条件下都能正确运行。

import org.junit.Test;
import java.io.*;
import static org.junit.Assert.*;public class MainTest {@Testpublic void testFileRead() {String filepath = "example.txt";File file = new File(filepath);if (file.exists()) {try {FileReader reader = new FileReader(filepath);BufferedReader br = new BufferedReader(reader);String line = br.readLine();assertNotNull(line);  // 验证文件内容不为空br.close();} catch (IOException e) {fail("读取文件时发生错误: " + e.getMessage());}} else {fail("文件未找到: " + filepath);}}
}
4.4 使用相对路径和类路径

使用相对路径和类路径访问文件,确保文件能够随程序一起部署和

访问。

import java.io.*;
import java.net.URL;public class Main {public static void main(String[] args) {ClassLoader classLoader = Main.class.getClassLoader();URL resource = classLoader.getResource("example.txt");if (resource != null) {try {FileReader reader = new FileReader(resource.getFile());BufferedReader br = new BufferedReader(reader);String line;while ((line = br.readLine()) != null) {System.out.println(line);}br.close();} catch (IOException e) {System.out.println("读取文件时发生错误: " + e.getMessage());}} else {System.out.println("文件未找到");}}
}

5. 示例项目

以下是一个示例项目,展示如何正确处理文件路径和访问,避免FileNotFoundException

5.1 项目结构
myproject
├── src
│   └── main
│       └── java
│           ├── Main.java
│           ├── ConfigReader.java
│           └── LoggerConfig.java
├── resources
│   └── example.txt
│   └── config.properties
└── pom.xml
5.2 Main.java
import java.io.*;
import java.util.logging.*;public class Main {private static final Logger logger = Logger.getLogger(Main.class.getName());public static void main(String[] args) {LoggerConfig.configureLogger(logger);ConfigReader configReader = new ConfigReader();String filepath = configReader.getFilePath("filepath");if (filepath != null) {try {FileReader reader = new FileReader(filepath);BufferedReader br = new BufferedReader(reader);String line;while ((line = br.readLine()) != null) {System.out.println(line);}br.close();} catch (IOException e) {logger.log(Level.SEVERE, "读取文件时发生错误", e);}} else {logger.log(Level.WARNING, "文件路径未在配置文件中找到");}}
}
5.3 ConfigReader.java
import java.io.*;
import java.util.Properties;public class ConfigReader {public String getFilePath(String key) {try {Properties properties = new Properties();properties.load(getClass().getClassLoader().getResourceAsStream("config.properties"));return properties.getProperty(key);} catch (IOException e) {e.printStackTrace();return null;}}
}
5.4 LoggerConfig.java
import java.util.logging.*;public class LoggerConfig {public static void configureLogger(Logger logger) {try {LogManager.getLogManager().readConfiguration(LoggerConfig.class.getClassLoader().getResourceAsStream("logging.properties"));} catch (IOException e) {e.printStackTrace();}}
}
5.5 config.properties
filepath=example.txt
5.6 logging.properties
handlers= java.util.logging.ConsoleHandler
.level= INFOjava.util.logging.ConsoleHandler.level = INFO
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter

6. 单元测试

编写单元测试来验证文件访问的正确性,确保代码在各种边界条件下都能正确运行。

6.1 MainTest.java
import org.junit.Test;
import java.io.*;
import static org.junit.Assert.*;public class MainTest {@Testpublic void testFileRead() {ConfigReader configReader = new ConfigReader();String filepath = configReader.getFilePath("filepath");assertNotNull("文件路径不应为空", filepath);File file = new File(filepath);if (file.exists()) {try {FileReader reader = new FileReader(filepath);BufferedReader br = new BufferedReader(reader);String line = br.readLine();assertNotNull(line);  // 验证文件内容不为空br.close();} catch (IOException e) {fail("读取文件时发生错误: " + e.getMessage());}} else {fail("文件未找到: " + filepath);}}
}

结语

理解并有效处理FileNotFoundException对于编写健壮的Java程序至关重要。通过本文提供的解决方案和预防措施,开发者可以有效避免和解决这类错误,提高代码质量和可靠性。希望本文能帮助你更好地理解和处理文件访问问题,从而编写出更加可靠的Java应用程序。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/350694.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

鸿蒙用 BuilderParam 实现同一个布局不同内容组件

面通过一个案例展示BuilderParam的具体用法,例如,现需要实现一个通用的卡片组件,如下图所示 卡片中显示的内容不固定,例如 具体实现代码如下: Entry Component struct BuildParamDemo {build() {Column(){Card() {imag…

【踩坑日记】I.MX6ULL裸机启动时由于编译的程序链接地址不对造成的程序没正确运行

1 现象 程序完全正确,但是由于程序链接的位置不对,导致程序没有正常运行。 2 寻找原因 对生成的bin文件进行反汇编: arm-linux-gnueabihf-objdump -D -m arm ledc.elf > ledc.dis查看生成的反汇编文件 发现在在链接的开始地址处&…

Redis高并发高可用

1. 复制机制 在分布式系统中,为了解决单点问题,通常会将数据复制多个副本部署到其他机器,以满足故障恢复和负载均衡等需求。Redis提供了复制功能,实现了相同数据的多个Redis副本。复制功能是高可用Redis的基础,后面的…

ubuntu 18.04 安装vnc

如何在Ubuntu 18.04安装VNC | myfreax sudo apt install xfce4 xfce4-goodies xorg dbus-x11 x11-xserver-utils sudo apt install tigervnc-standalone-server tigervnc-common vncserver sudo apt install xfce4 xfce4-goodies xorg dbus-x11 x11-xserver-utils sudo apt ins…

利用flask + pymysql监测数据同步中的数据是否完整

一、背景 最近项目搞重构,将原有的系统拆分成了多个子系统。但是有数据表需要在不同系统中数据,同时为了解决项目性能最了一个很简单的方案,就是公共数据存在每个系统之中。 二、分析 分析这些表,这些表相比源数据表,表…

SpringBoot+Maven笔记

文章目录 1、启动类2、mapper 接口3、控制类4、补充:返回数据时的封装5、补充a、mybatisplus 1、启动类 在启动类上加入MapperScan扫描自己所写的mapper接口 package com.example.bilili_springboot_study;import org.mybatis.spring.annotation.MapperScan; impo…

学习cel-go了解一下通用表达语言评估是什么

文章目录 1. 前言2. cel-go2.1 cel-go关键概念Applications(应用)Compilation(编译)Expressions(表达式)Environment环境解析表达式的三个阶段 3. cel-go的使用4. cel-go使用5. 说明6. 小结7. 参考 1. 前言 最近因为在项目里面实现的一个使用和||来组合获取字段值的功能有点儿…

增材制造引领模具创新之路

随着科技的快速发展和制造业的不断转型升级,增材制造(也称为3D打印)技术正逐渐展现出其在模具智造中的巨大潜力和优势。增材制造以其独特的加工方式和设计理念,为模具行业带来了革命性的变革,为传统制造业注入了新的活…

利用鱼骨图进行项目问题复盘与改进

一、引言 在项目管理中,问题复盘是一个至关重要的环节。它不仅能帮助我们识别项目执行过程中出现的问题,还能促使我们深入探究问题的根本原因,从而采取有效的改进措施。在这个过程中,鱼骨图作为一种强大的工具,为我们…

网络爬虫概述

自学python如何成为大佬(目录):https://blog.csdn.net/weixin_67859959/article/details/139049996?spm1001.2014.3001.5501 网络爬虫(又被称为网络蜘蛛、网络机器人,在某社区中经常被称为网页追逐者),可以按照指定的规则&#…

汽车IVI中控开发入门及进阶(二十八):视频SERDES芯片

前言: SerDes不是很常见,SerDes是将Ser和Des两种产品组合在一起的名称。Ser是Serializer或“并串转换器”的缩写,Des是Deserializer或“串并转换器”的简写。 Serdes是不是必须的?上一节介绍了camera,上上节也研究了video decoder,那么带摄像头的应用应该具体选哪个方案…

波卡近期活动一览| Polkadot Decoded 2024 重磅来袭,300 万 DOT 将用于 DeFi 增长

Polkadot 生态近期活动精彩纷呈,线上线下火热进行中!此外,Polkadot 2.0 的关键升级即将到来,Gavin Wood 博士也将在最新访谈节目中分享更多关于波卡的未来发展蓝图。波卡 DAO 通过提案,分配 300 万 DOT 支持 DeFi 生态…

深度学习(PyTorch)批注理解,建议边学可以边看这个笔记

前言 动手学习深度学习,内容丰富,但是对于初学者有很多晦涩难懂的地方,我将日常更新这篇文章以截图的形式,每天高强度学习四五个小时,精力缺乏,我认为,如果想学习这个深度学习,你需…

堆栈溢出的攻击 -fno-stack-protector stack smash 检测

在程序返回的一条语句堆栈项目处&#xff0c;用新函数的起始地址覆盖&#xff0c;将会跳转到执行新函数。 现在系统对这个行为做了判断&#xff0c;已经无法实施这类攻击或技巧。 1&#xff0c;测试代码 #include <stdio.h> void cc() {printf("I am cc( )\n"…

Linux文本处理三剑客+正则表达式

Linux文本处理常用的3个命令&#xff0c;脚本或者文本处理任务中会用到。这里做个整理。 三者的功能都是处理文本&#xff0c;但侧重点各不相同&#xff0c;grep更适合单纯的查找或匹配文本&#xff0c;sed更适合编辑匹配到的文本&#xff0c;awk更适合格式化文本&#xff0c;对…

Android中的消息异步处理机制及实现方案

基本介绍 当我们需要执行复杂的计算逻辑&#xff0c;网络请求等耗时操作时&#xff0c;服务器可能不会立即响应请求&#xff0c;如果不将这类操作放在子线程中运行&#xff0c;就会导致主线程被阻塞住&#xff0c;从而影响用户的使用体验如果想要更新应用程序中的UI控件&#…

Java中List流式转换为Map的终极指南

哈喽&#xff0c;大家好&#xff0c;我是木头左&#xff01; 在Java编程中&#xff0c;经常需要将一个List对象转换为另一个Map对象。这可能是因为需要根据List中的元素的某些属性来创建一个新的键值对集合。在本文中&#xff0c;我将向您展示如何使用Java 中的流式API轻松地实…

神经网络学习2

张量&#xff08;Tensor&#xff09;是深度学习和科学计算中的基本数据结构&#xff0c;用于表示多维数组。张量可以看作是一个更广义的概念&#xff0c;涵盖了标量、向量、矩阵以及更高维度的数据结构。具体来说&#xff0c;张量的维度可以是以下几种形式&#xff1a; 标量&am…

借助ChatGPT撰写学术论文,如何设定有效的角色提示词指

大家好&#xff0c;感谢关注。这个给大家提供关于论文写作方面专业的讲解&#xff0c;以及借助ChatGPT等AI工具如何有效辅助的攻略技巧。有兴趣的朋友可以添加我&#xff08;yida985&#xff09;交流学术写作或ChatGPT等AI领域相关问题&#xff0c;多多交流&#xff0c;相互成就…

Javaweb8 数据库Mybatis+JDBC

Mybatis Dao层&#xff0c;用于简化JDBC开发 1步中的实体类 int类型一般用Integer &#xff1a;如果用int类型 默认值为0,会影响数据的判断,用Integer默认值是null,不会给数据的判断造成干扰 2.在application .properties里配置数据库的链接信息-四要素 #驱动类名称 #URL #用…