public URLStreamHandler createURLStreamHandler(final String protocol)
{
FileProvider provider = (FileProvider) providers.get(protocol);
if (provider != null)
{
return new DefaultURLStreamHandler(context);
}
// Route all other calls to the default URLStreamHandlerFactory
return new URLStreamHandlerProxy();
}