我需要解析可能包含不同于http
或https
的协议的网址...并且因为如果尝试使用类似java.net.URL
的网址创建nio://localhost:61616
对象构造函数崩溃了,我已经实现了这样的东西:
def parseURL(spec: String): (String, String, Int, String) = {
import java.net.URL
var protocol: String = null
val url = spec.split("://") match {
case parts if parts.length > 1 =>
protocol = parts(0)
new URL(if (protocol == "http" || protocol == "https" ) spec else "http://" + parts(1))
case _ => new URL("http" + spec.dropWhile(_ == '/'))
}
var port = url.getPort; if (port < 0) port = url.getDefaultPort
(protocol, url.getHost, port, url.getFile)
}
如果给定的网址包含的协议不同于http
或https
,我会将其保存在变量中,然后强制http
让java.net.URL
解析它崩溃。
有没有更优雅的方法来解决这个问题?
答案 0 :(得分:10)
您可以将java.net.URI用于任何非标准协议。
new java.net.URI("nio://localhost:61616").getScheme() // returns nio
如果您想要更多类似Scala的API,可以查看https://github.com/NET-A-PORTER/scala-uri。