I want to get the file location paths using properties file for below case.
FileInputStream file =
new FileInputStream(new File("D:\\Source folder\\sourcefile.xlsx"));
FileOutputStream outputStream =
new FileOutputStream("D:\\Destination folder\\destfile.xlsx")
Note: I will be placing the properties file outside the jar file which could be edited by the user.
Thanks in advance!!