我有两个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对象,我看到了错误。 请帮忙解决这个问题。
答案 0 :(得分:0)
无论你在哪里调用这个方法,都把它放在try和catch块中。 try {ReadFileData data = new ReadFileData();} catch(IOException exception){System.out.println(exception.getMessage());}