public interface URLStreamHandlerFactory
java.net.URLStreamHandlerFactory |
该接口为 URL
流协议处理程序定义了一个工厂。
它由 URL
类用于为特定协议创建 URLStreamHandler
。
也可以看看:
Public methods |
|
---|---|
abstract URLStreamHandler |
createURLStreamHandler(String protocol) 用指定的协议创建一个新的 |
URLStreamHandler createURLStreamHandler (String protocol)
用指定的协议创建一个新的 URLStreamHandler
实例。
Parameters | |
---|---|
protocol |
String : the protocol ("ftp ", "http ", "nntp ", etc.). |
Returns | |
---|---|
URLStreamHandler |
a URLStreamHandler for the specific protocol. |
也可以看看: