Invalid escape sequence (valid ones are \\b \\t \\n \\f \\r \\\" \\' \\\\ )

匿名 (未验证) 提交于 2019-12-03 01:46:01

问题:

I am trying to read a file into my Java program using java.util.Scanner and I get the above message when I enter the code below (I am new to java) - can anyone help? (I looked at a similar message someone got with their own code, but it was too complex for me to use in my example!). I have Windows 7.

BufferedReader job = new BufferedReader                (new FileReader("\My Documents\JOBS\newfile.txt"));

回答1:

You need to escape the "\" in the file path.

BufferedReader job = new BufferedReader                 (new FileReader("\\My Documents\\JOBS\\newfile.txt"));


回答2:

\ is an escape character, use \\



回答3:

If you're using eclipse, there's a setting that inserts escape chars automatically when pasting:

Window -> Preferences -> Java -> Editor -> Typing -> In String Literals -> Escape text when pasting into a string literal

Then, when something like D:\Env\Images\image1.png is in your clipboard and you paste it into eclipse, it'll automatically look like this: D:\\Env\\Images\\image1.png



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!