Java Jar 파일 : 자원 사용 오류 : URI가 계층 적이 지 않습니다. 내 앱을 jar 파일에 배포했습니다. 리소스의 한 파일에서 jar 파일 외부로 데이터를 복사해야 할 때 다음 코드를 수행합니다. URL resourceUrl = getClass().getResource("/resource/data.sav"); File src = new File(resourceUrl.toURI()); //ERROR HERE File dst = new File(CurrentPath()+"data.sav"); //CurrentPath: path of jar file don't include jar file name FileInputStream in = new FileInputStream(src); FileOutpu..