Using eclipse, I have a file titled bad_words.txt in my project folder titled HackGSU. I want locate the file and read the contents of the file. I saw this answer how to read te
You probably should use backslash instead of slash:
p.concat("\HackGSU\bad_words.txt");
You can also try to type double backslash:
p.concat("\\HackGSU\\bad_words.txt");