Intellij is unable to find a file on the classpath with the following java statement:
URL fileUrl = TestClass.class.getResource("/data.xlsx");
The variable fileUrl is null;
Intellij is unable to find a file on the classpath with the following java statement:
URL fileUrl = TestClass.class.getResource("/data.xlsx");
The variable fileUrl is null;
From the comments above. I changed the statement as follow :
TestClass.class.getResource("/catalogs/data.xlsx");
Now the URL is set.