package step3;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
public class Task {
/********* Begin *********/
//请在合适的部位添加代码
public static void main(String[] args) throws FileNotFoundException {
test();
}
public static void test() throws FileNotFoundException {
File file = new File("abc");
if(!file.exists()){ //判断文件是否存在
//文件不存在,则 抛出 文件不存在异常
throw new FileNotFoundException("该文件不存在");
}else{
FileInputStream fs = new FileInputStream(file);
}
}
/********* End *********/
}
摸鱼dba
- 粉丝: 0
- 资源: 30
最新资源
- PHP的ThinkPHP6.0小说CMS管理系统源码带搭建教程数据库 MySQL源码类型 WebForm
- java实现的贪吃蛇小游戏.zip学习资料
- [] - 2024-10-09 IC虚拟机2024及资料分享.html
- Delphi 12 控件之DynaDynaPDF 4.0.94.265.rar
- Android开发中使用SQLite数据库的教程chm版最新版本
- PHP开源商城系统源码带搭建教程数据库 MySQL源码类型 WebForm
- Delphi 12 控件之FastReport VCL Enterprise v2024.1 for Delphi 10.4-12 Athens with Source Code.7z
- Delphi 12 控件之TMS FNC Core v4.0.2.1 (15 Nov 2024) for Delphi & CB XE7-D12 Athens Full Source.7z
- Java实现的扫雷游戏.zip学习资源代码
- Delphi 12 控件fmxlinux1.78.exe
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈