Here you can find the source of isFileURL(URL url)
public static boolean isFileURL(URL url)
//package com.java2s; //License from project: Apache License import java.net.URL; public class Main { public static final String URL_PROTOCOL_FILE = "file"; public static final String URL_PROTOCOL_VFS = "vfs"; public static boolean isFileURL(URL url) { String protocol = url.getProtocol(); return (URL_PROTOCOL_FILE.equals(protocol) || protocol.startsWith(URL_PROTOCOL_VFS)); }/*from www .j a v a2 s . co m*/ }