java 에서 file to url

java 에서 file to url 
The method toURL() from the type File is deprecated
다음으로 이동:http://www.jguru.com/faq/view.jsp?EID=1280051
해결 방법:
    URL url1 = file.toURL();         // bad
    URL url2 = file.toURI().toURL(); //good

좋은 웹페이지 즐겨찾기