如何在Java中添加新文件的路径

时间:2015-08-03 12:50:09

标签: java file filereader

我有这样的事情:

File file = new File("test.txt");

但我想做这样的事情:

File file = new File("C:\Users\Test\eclipse_workspace\Example\text.txt");

我该怎么做?

1 个答案:

答案 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");