1.将文件放在源码目录下
String path = 类名.class.getClassLoader().getResource("").getPath(); //可以ding定位到classes目录下,
File file = new File(path + "user.txt");
2.如果放在项目下
File file = new File("user.txt"); //可以直接读取
来源:CSDN
作者:执见
链接:https://blog.csdn.net/u014649315/article/details/81175688