从Scala中的Akka ResponseEntity获取内容

时间:2016-06-15 15:46:51

标签: scala akka httpentity

我对一个返回json的rest服务进行GET HTTP调用。我想将json解析为scala对象,但在这里我被卡住了。我正在使用Akka api,我无法从Akka的 ResponseEntity

中检索内容

这是我的 sbt 文件:

name := "ScalaHttp"

version := "1.0"

scalaVersion := "2.11.8"

libraryDependencies ++={
  val akkaV = "2.4.5"
  Seq(
    "com.typesafe.akka"         %%  "akka-http-core"    % akkaV,
    "com.typesafe.play"         %%  "play-json"         % "2.4.0-M3"
  )
}

这是应用程序

import akka.actor.ActorSystem
import akka.http.scaladsl.Http
import akka.http.scaladsl.model.HttpRequest
import akka.stream.ActorMaterializer

import scala.concurrent.ExecutionContext.Implicits.global


object Sender {
  def main(args: Array[String]): Unit = {

    implicit val system = ActorSystem()
    implicit val materializer = ActorMaterializer()

    Http().singleRequest(HttpRequest(uri = "http://declinators.com/declinator?noun=komunikacja")) foreach {
      y => println(y.entity)
        println(y.entity.getContentType())
        println(y.entity.contentType)
    }
  }
}

打印:

HttpEntity.Strict(application/json,{"nominative":"komunikacja","genitive":"komunikacji","dative":"komunikacji","accusative":"komunikację","instrumental":"komunikacją","locative":"komunikacji","vocative":"komunikacjo"})
application/json
application/json

以下是问题:
1.为什么ResponseEntity提供getContentType()和contentType()?他们回归同样的事情。 2.获取contentyType很简单,你有两种方法可以做到,但我怎样才能获得内容,所以我可以用json播放(即使用play解析它)!

1 个答案:

答案 0 :(得分:0)

您可以将entity.data.toString用于二进制内容类型,或使用以下代码段

data.decodeString(nb.charset.value)

请按照HttpEntity.Strict.toString实现了解详细信息:

https://github.com/akka/akka/blob/master/akka-http-core/src/main/scala/akka/http/scaladsl/model/HttpEntity.scala#L316