我是 Java 新手,面临以下问题。我有以下代码:
public class ReadExcel {
Config conf = new Config();
String filePath = conf.getInputfilePath();
@Test
public void readFullXL() {
try {
FileInputStream FSRead = new FileInputStream(filePath);
我已经在函数外部声明了这个变量'filePath',因为;我想将它用作全局变量。但是,在 readFullXL() 中,我无法获取变量“filePath”的值并获得空指针异常。
有人可以建议吗?如何在 Junit 文件中声明全局变量。