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

你可能感兴趣的:(java 中 file to url)