当前位置: 首页 > 工具软件 > JFinalCMS > 使用案例 >

JFinal学习记录-获取路径

太叔昊苍
2023-12-01
  • getPath()
String path = clazz.getResource("").getPath();
  • getRootClassPath()
 String path = PathKit.class.getClassLoader().getResource("").toURI().getPath();
  • getWebRootPath()
 String path = Class .class.getResource("/").toURI().getPath();
  • 输出结果分别是
E:\workspace\jfinal_demo\out\artifacts\jfinal_war_exploded\WEB-INF\classes\com\jfinal\kit
E:\workspace\jfinal_demo\out\artifacts\jfinal_war_exploded\WEB-INF\classes
E:\workspace\jfinal_demo\out\artifacts\jfinal_war_exploded
 类似资料: