idea相对路径问题 发表于 2025-01-08 更新于 2025-01-09 分类于 项目学习 相对路径是相对于基准路径来说的。 idea的基准路径就是项目根目录所在位置。 比如说项目结构如下 : Test .idea src main java com qust data.txt Main.class test target .gitignore pom.xml f.txt 假设写 data.txt,访问方式如下 : 1234567public class Main { public static void main(String[] args) throws IOException { FileWriter fw = new FileWriter("src\\main\\java\\com\\qust\\data.txt", true); fw.append("Hello World\n"); fw.close(); }} 假设要访问 f.txt,访问方式如下 : 1234567public class Main { public static void main(String[] args) throws IOException { FileWriter fw = new FileWriter("f.txt", true); // 追加内容 fw.append("Hello World"); fw.close(); }}