Scala:如何使用自定义协议解析URL

时间:2015-09-24 23:44:32

标签: scala url parse-url

我需要解析可能包含不同于httphttps的协议的网址...并且因为如果尝试使用类似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)
}

如果给定的网址包含的协议不同于httphttps,我会将其保存在变量中,然后强制httpjava.net.URL解析它崩溃。

有没有更优雅的方法来解决这个问题?

1 个答案:

答案 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