반응형
ClassLoader classLoader = getClass().getClassLoader();
try (InputStream inputStream = classLoader.getResourceAsStream(filePath))
{
InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
}catch(Exception e){
e.printStackTrace();
}
반응형
'Java' 카테고리의 다른 글
spring security sec tag in thymeleaf 에서 sec 권한 tag(테그)태그 사용하기 (0) | 2021.06.08 |
---|---|
thymeleaf , enum switch case (0) | 2021.05.27 |
intelij junit test , 테스트 결과 보이지 않는다면, (0) | 2021.05.14 |
인텔리제이(intellij) UTF-8 한글 인코딩 설정 (0) | 2021.04.27 |
querydsl, mariadb, mysql, yyyy-mm(yyyymm) 월(달)별 조회 (0) | 2021.04.13 |