Stay organized with collections
Save and categorize content based on your preferences.
URLStreamHandlerFactory
interface URLStreamHandlerFactory
This interface defines a factory for URL
stream protocol handlers.
A URL stream handler factory is used as specified in the URL constructor.
Summary
Public methods |
abstract URLStreamHandler! |
Creates a new URLStreamHandler instance with the specified protocol.
|
Public methods
createURLStreamHandler
abstract fun createURLStreamHandler(protocol: String!): URLStreamHandler!
Creates a new URLStreamHandler
instance with the specified protocol.
Parameters |
protocol |
String!: the protocol ("ftp ", "http ", "nntp ", etc.). |
Return |
URLStreamHandler! |
a URLStreamHandler for the specific protocol, or null if this factory cannot create a handler for the specific protocol |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# URLStreamHandlerFactory\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nURLStreamHandlerFactory\n=======================\n\n```\ninterface URLStreamHandlerFactory\n```\n\n|---------------------------------------|\n| [java.net.URLStreamHandlerFactory](#) |\n\nThis interface defines a factory for `URL` stream protocol handlers.\n\nA URL stream handler factory is used as specified in the [URL constructor](/reference/kotlin/java/net/URL#URL(kotlin.String,%20kotlin.String,%20kotlin.Int,%20kotlin.String)).\n\nSummary\n-------\n\n| Public methods ||\n|---------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| abstract [URLStreamHandler](/reference/kotlin/java/net/URLStreamHandler)! | [createURLStreamHandler](#createURLStreamHandler(kotlin.String))`(`protocol:` `[String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!`)` Creates a new `URLStreamHandler` instance with the specified protocol. |\n\nPublic methods\n--------------\n\n### createURLStreamHandler\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun createURLStreamHandler(protocol: String!): URLStreamHandler!\n```\n\nCreates a new `URLStreamHandler` instance with the specified protocol.\n\n| Parameters ||\n|------------|--------------------------------------------------------------------------------------------------------------------------------------|\n| `protocol` | [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!: the protocol (\"`ftp`\", \"`http`\", \"`nntp`\", etc.). |\n\n| Return ||\n|------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|\n| [URLStreamHandler](/reference/kotlin/java/net/URLStreamHandler)! | a `URLStreamHandler` for the specific protocol, or `null` if this factory cannot create a handler for the specific protocol |\n\n**See Also**\n\n- [java.net.URLStreamHandler](/reference/kotlin/java/net/URLStreamHandler)"]]