List of utility methods to do URL to Path Convert
String | convertUrlToFilePath(URL url) convert Url To File Path try { return URLDecoder.decode(url.getFile(), "UTF-8"); } catch (UnsupportedEncodingException e) { throw new RuntimeException(e); |
File | convertUrlToFile(URL url) convert Url To File return new File(convertUrlToFilePath(url)); |