class.getResource null問題

sweetmain發表於2018-01-22

先上一段程式碼

public static void main(String[] args) {
    URL resource = WordTest.class.getResource("/hello1.ftl");
    // URL resource = WordTest.class.getResource("hello1.ftl"); 錯誤的寫法
    System.out.println(resource.getPath());

    URL resource1 = WordTest.class.getClassLoader().getResource("hello1.ftl");
    // URL resource1 = WordTest.class.getClassLoader().getResource("/hello1.ftl"); 錯誤的寫法
    System.out.println(resource1.getPath());
  }
複製程式碼

目錄結構

目錄結構

以前還真不知道這兩種寫法的區別,今天學習了~

相關文章