number (2)变量相关错误

时间:2023-03-09 00:32:43
number (2)变量相关错误

变量没有被定义

fw cannot be resolved

变量没有被初始化

number (2)变量相关错误

正确代码

package com.itheima_01;

import java.io.FileWriter;
import java.io.IOException;

public class ExceptionDemo1 {
public static void main(String[] args) {
FileWriter fw=null;
try {
fw =new FileWriter("a.txt");
fw.write("hello");

} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
try {
fw.close();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
}
}