默认构造函数无法处理隐式超级构造函数抛出的异常类型IOException。 Fileinputstream

时间:2015-07-14 06:05:52

标签: selenium-webdriver

我有两个java文件:
1)Readfiledata.java

public class ReadFileData {
protected Properties prop = new Properties();
public ReadFileData() throws IOException {
    FileInputStream  inputStream= new FileInputStream(System.getProperty("user.dir") + "\\Resources\\config.properties");   
    prop.load(inputStream);
}

}

2)Login.java

ReadFileData data= new ReadFileData();

在这个文件中创建一个readfiledata对象,我看到了错误。 请帮忙解决这个问题。

1 个答案:

答案 0 :(得分:0)

无论你在哪里调用这个方法,都把它放在try和catch块中。 try {ReadFileData data = new ReadFileData();} catch(IOException exception){System.out.println(exception.getMessage());}