Here you can find the source of resolveFileName(URI uri)
public static String resolveFileName(URI uri)
//package com.java2s; //License from project: Apache License import java.net.URI; public class Main { public static String resolveFileName(URI uri) { String url = uri.toString(); return url.substring(url.lastIndexOf('/') + 1, url.length()); }/*from w ww . j av a 2 s. c om*/ }