I am trying to integrate Firebase with my Java Spring web application what runs on server and it give an error:
Unhandled exception: java.io.FileNotFoundException"
The file is exists in the directory:
FileInputStream serviceAccount = new FileInputStream("C:\Users\My Name\Downloads\Projectname\words.txt");
I run a bunch of prints when I just used File where it exists, its readable, the full file path or whatever is the exact same as the file path in the FileInputStream
but nothing is working. i cant use a try catch because Firebase doesn't allow it or something. At this point I don't know what to do.