JFinal學習記錄-獲取路徑

  • 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
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章