I want to read a file from a relative path. I've tried the following code
InputStream in = new FileInputStream(".//Audio//w1.wav");
Error:
java.io.FileNotFoundException: .\Audio\w1.wav (The system cannot find the path specified)
I also tried to specify the path as "Audio/w1.wav", "Audio//w1.wav" but it does not work.
How can I get the system to find the file?