How to Initialize an InputStream Before Try/Catch Block(如何在Try/Catch块之前初始化InputStream)
本文介绍了如何在Try/Catch块之前初始化InputStream的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要获取文件名字符串,然后尝试打开该文件。如果找不到该文件,我将进行循环,直到输入正确的字符串。
public static void main(String[] args){
// Get file string until valid input is entered.
System.out.println("Enter file name.
Enter ';' to exit.");
String fileName = sc.nextLine();
boolean fileLoop = true;
InputStream inFile;
while (fileLoop){
try{
inFile = new FileInputStream(fileName);
fileLoop = false;
} catch (FileNotFoundException e) {
System.out.println("That file was not found.
Please re enter file name.
Enter ';' to exit.");
fileName = sc.nextLine();
if (fileName.equals(";")){
return;
}
}
}
// ****** This is where the error is. It says inFile may not have been initalized. ***
exampleMethod(inFile);
}
public static void exampleMethod(InputStream inFile){
// Do stuff with the file.
}
当我尝试调用exampleMethod(InFile)时,NetBeans告诉我InputStream inFile可能尚未初始化。我认为这是因为赋值位于try Catch块内。正如大家所看到的,我尝试在循环外部声明对象,但没有成功。
我还尝试使用以下内容在循环外部初始化输入流:
InputStream inFile = new FileInptStream();
// This yeilds an eror because there are no arguments.
还有这个:
InputStream inFile = new InputStream();
// This doesn't work because InputStream is abstract.
如何确保在初始化此InputStream的同时仍允许循环,直到输入有效输入?
谢谢
推荐答案
要修复此问题,请更改以下代码行:
InputStream inFile;
至此:
InputStream inFile = null;
您必须这样做的原因是Java阻止您使用未初始化的局部变量。使用未初始化的变量通常是一个疏忽,因此Java不允许在此场景中使用它。正如@immibis指出的那样,这个变量将始终被初始化,但编译器在这种情况下不够聪明,无法计算出它。
这篇关于如何在Try/Catch块之前初始化InputStream的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何在Try/Catch块之前初始化InputStream
猜你喜欢
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 获取数字的最后一位 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 转换 ldap 日期 2022-01-01