文件路径
System.getProperty("user.dir")
new File("").getAbsolutePath()
用ClassLoader获取
ClassLoader.getSystemResource("").getPath()
Thread.currentThread().getContextClassLoader().getResource("").getPath()
用当前类获取
xxx.class.getResource("/").getPath()
xxx.class.getResource("").getPath()
当前类的路径(项目路径+包名)