Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 357 Bytes

jar_resource.md

File metadata and controls

8 lines (7 loc) · 357 Bytes

Jar 파일에서 resources 파일 접근할때

  • 로컬에서 하면 File이나 InputStream이나 별차이가 없다.
  • 근데 jar로 말고나서는 차이가 난다.
File test = new File(Test.class.getResource("/test.json").getFile()); // 못 불러옴
InputStream is = Test.class.getResourceAsStream("/test.json");        // 불러옴