如何使用akka http发送文件作为响应?

问题描述 投票:2回答:3

我对akka世界有点新意,所以我的知识领域有点小。我正在创建一个https服务器并使用akka流和http处理它,对于特定的URL,我需要将文件发送回客户端。如何使用akka流和避免akka路由实现这一目标。

def handleCall(request:HttpRequest):HttpResponse = {
  logger.info("Request is {}",request)
  val uri:String = request.getUri().path()
  if(uri == "/download"){
    val f = new File("/1000.txt")
    logger.info("file download")
    return HttpEntity(
    //What should i put here if i want to return a text file.
    )
}
scala akka akka-stream akka-http
3个回答
5
投票

如果文件可能很大,那么在将其发送到客户端之前,您不希望将所有内容都消耗到内存中。这是通过纯粹基于流的解决方案解决的:

import scala.io
import akka.stream.scaladsl.Source
import akka.http.scaladsl.model.HttpEntity.{Chunked, ChunkStreamPart}
import akka.http.scaladsl.model.{HttpResponse, ContentTypes}

val fileContentsSource : (String, String) => Source[ChunkStreamPart, _] =
  (fileName, enc) =>
    Source
      .fromIterator( io.Source.fromFile(fileName, enc).getLines )
      .map(ChunkStreamPart.apply)


val fileEntityResponse : (String, String) => HttpResponse =
  (fileName, enc) => 
    HttpResponse(entity = Chunked(ContentTypes.`text/plain(UTF-8)`,
                                  fileContentsSource(fileName, enc)))

现在,您可以创建并发送HttpResponse,而无需服务器保留整个内容:

val httpResp : HttpResponse = fileEntityResponse("/foo/log.txt", "UTF8")

0
投票
val str2 = scala.io.Source.fromFile("/tmp/t.log", "UTF8").mkString
val str = Source.single(ByteString(str2))
HttpResponse(entity = HttpEntity.Chunked.fromData(ContentTypes.`application/octet-stream`, str))

0
投票

Akka Http Route

  pathSingleSlash {
    get {
      complete(HttpEntity.fromFile(ContentTypes.`application/octet-stream`, new File(s"/home/shivam/sample.zip"))
    }
  }

卷曲请求

curl --output sample.zip http://localhost:8080/

从HttpEntity.scala复制

 /**
   * Returns either the empty entity, if the given file is empty, or a [[HttpEntity.Default]] entity
   * consisting of a stream of [[akka.util.ByteString]] instances each containing `chunkSize` bytes
   * (except for the final ByteString, which simply contains the remaining bytes).
   *
   * If the given `chunkSize` is -1 the default chunk size is used.
   */
© www.soinside.com 2019 - 2024. All rights reserved.