我有这样的事情:
File file = new File("test.txt");
但我想做这样的事情:
File file = new File("C:\Users\Test\eclipse_workspace\Example\text.txt");
我该怎么做?
答案 0 :(得分:0)
Counterslash是一个必须转义的字符,以及用于转义字符的字符。所以,为了得到
File file = new File("C:\Users\Test\eclipse_workspace\Example\text.txt");
要工作,你必须逃避每一次反击。就像这样:
File file = new File("C:\\Users\\Test\\eclipse_workspace\\Example\\text.txt");