Get File name from a URL in Java
Description
The following code shows how to get File name from a URL.
Example
import java.net.URL;
//from w ww . j av a 2 s . co m
public class Main {
public static void main(String[] args) throws Exception {
URL url = new URL("http://www.yahoo.com:80/en/index.html?name=joe#first");
System.out.println("file:" + url.getFile());
}
}
The code above generates the following result.