gpt4 book ai didi

scala - 如何在 Play 中发送多部分/相关请求

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:28:27 24 4
gpt4 key购买 nike

我正在将我的 scala 2.11.6、playframework 2.3.8 与 open-ocr (tesseract) 集成,它需要发送多部分/相关数据。

我正在尝试这样做,手动生成多部分请求

        val postBody = s"""--separator--
|Content-Type: application/json;
|
| { "engine": "tesseract" }
|
|--separator--
| Content-Type: image/png;
|
| ${Base64.getEncoder().encodeToString(image)}
|--separator--
""".stripMargin
val parseResult = WS.
url("http://127.0.0.1:9292/ocr-file-upload").
withMethod("POST").
withHeaders(
"Content-Type" -> "multipart/related",
"boundary" -> "separator").
withBody(postBody).
execute()

但它不起作用。 Open-ocr 无法读取请求的 header 。

我该怎么做?

最佳答案

我使用的解决方案是使用 ning 多部分响应生成器手动生成正文。

旧版本1.8.0:

import com.ning.http.client.FluentCaseInsensitiveStringsMap
import com.ning.http.client.multipart._

...

// Step 1. Generating tesseract json configuration
val json = new StringPart("config", """{ "engine": "tesseract" }""", "utf-8")
json.setContentType("application/json")
// Step 2. Generating file part
val filePart = new FilePart("file", new ByteArrayPartSource("image.png", image), "image/png", null)
// Step 3. Build up the Multiparts
val reqE = new MultipartRequestEntity(
Array(filePart, json),
new FluentCaseInsensitiveStringsMap().add("Content-Type", "multipart/related")
)
// Step 3.1. Streaming result to byte array
val bos = new ByteArrayOutputStream()
reqE.writeRequest(bos)
// Step 4. Performing WS request upload request
val parseResult = WS
.url("http://127.0.0.1:9292/ocr-file-upload")
.withHeaders("Content-Type" -> reqE.getContentType()).
post(bos.toByteArray());
// Step 5. Mapping result to parseResult
parseResult.map(_.body)

最新版本1.9.31:

import com.ning.http.client.FluentCaseInsensitiveStringsMap
import com.ning.http.client.multipart._

...

// Step 1. Generating tesseract json configuration
val json = new StringPart("config", """{ "engine": "tesseract" }""", "application/json", Charset.forName("utf-8"))
// Step 2. Generating file part
val filePart = new ByteArrayPart("image.png", scaledImage, "image/png")
// Step 3. Build up the Multiparts
val reqE = MultipartUtils.newMultipartBody(
util.Arrays.asList(filePart, json),
new FluentCaseInsensitiveStringsMap().add("Content-Type", "multipart/related")
)
// Step 3.1. Streaming result to byte array
val bos = ByteBuffer.allocate(scaledImage.length + 1024)
reqE.read(bos)
// Step 4. Performing WS request upload request
val parseResult = WS
.url("http://127.0.0.1:9292/ocr-file-upload")
.withHeaders("Content-Type" -> reqE.getContentType())
.post(bos.array());
// Step 5. Mapping result to parseResult
parseResult.map(_.body)

关于scala - 如何在 Play 中发送多部分/相关请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32317346/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com