- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
对于我所面临的问题,如果能提供一些帮助,我将不胜感激。
我正在尝试将图像发布到 receipt parsing API并在构建实际请求时遇到问题。
我已经阅读并使用了 this article 中的大部分代码由 tarek 在 Medium 上编写,用于创建一个 MultiPart 类(使用 https),如下所示:
Multipart.kt
package com.example.skopal.foodme.services
import java.io.BufferedReader
import java.io.File
import java.io.FileInputStream
import java.io.IOException
import java.io.InputStreamReader
import java.io.OutputStream
import java.io.OutputStreamWriter
import java.io.PrintWriter
import java.net.URL
import javax.net.ssl.HttpsURLConnection
class Multipart
/**
* This constructor initializes a new HTTPS POST request with content type
* is set to multipart/form-data
* @param url
* *
* @throws IOException
*/
@Throws(IOException::class)
constructor(url: URL) {
companion object {
private val LINE_FEED = "\r\n"
private val maxBufferSize = 1024 * 1024
private val charset = "UTF-8"
}
// creates a unique boundary based on time stamp
private val boundary: String = "===" + System.currentTimeMillis() + "==="
private val httpsConnection: HttpsURLConnection = url.openConnection() as HttpsURLConnection
private val outputStream: OutputStream
private val writer: PrintWriter
init {
httpsConnection.setRequestProperty("Accept-Charset", "UTF-8")
httpsConnection.setRequestProperty("Connection", "Keep-Alive")
httpsConnection.setRequestProperty("Cache-Control", "no-cache")
httpsConnection.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary)
httpsConnection.setChunkedStreamingMode(maxBufferSize)
httpsConnection.doInput = true
httpsConnection.doOutput = true // indicates POST method
httpsConnection.useCaches = false
outputStream = httpsConnection.outputStream
writer = PrintWriter(OutputStreamWriter(outputStream, charset), true)
}
/**
* Adds a upload file section to the request
* @param fieldName - name attribute in <input type="file" name="..."></input>
* *
* @param uploadFile - a File to be uploaded
* *
* @throws IOException
*/
@Throws(IOException::class)
fun addFilePart(fieldName: String, uploadFile: File, fileName: String, fileType: String) {
writer.append("--").append(boundary).append(LINE_FEED)
writer.append("Content-Disposition: file; name=\"").append(fieldName)
.append("\"; filename=\"").append(fileName).append("\"").append(LINE_FEED)
writer.append("Content-Type: ").append(fileType).append(LINE_FEED)
writer.append(LINE_FEED)
writer.flush()
val inputStream = FileInputStream(uploadFile)
inputStream.copyTo(outputStream, maxBufferSize)
outputStream.flush()
inputStream.close()
writer.append(LINE_FEED)
writer.flush()
}
/**
* Adds a header field to the request.
* @param name - name of the header field
* *
* @param value - value of the header field
*/
fun addHeaderField(name: String, value: String) {
writer.append("$name: $value").append(LINE_FEED)
writer.flush()
}
/**
* Upload the file and receive a response from the server.
* @param onSuccess
* *
* @param onFailure
* *
* @throws IOException
*/
@Throws(IOException::class)
fun upload(onSuccess: (String) -> Unit, onFailure: ((Int) -> Unit)? = null) {
writer.append(LINE_FEED).flush()
writer.append("--").append(boundary).append("--")
.append(LINE_FEED)
writer.close()
try {
// checks server's status code first
val status = httpsConnection.responseCode
if (status == HttpsURLConnection.HTTP_OK) {
val reader = BufferedReader(InputStreamReader(httpsConnection.inputStream))
val response = reader.use(BufferedReader::readText)
httpsConnection.disconnect()
onSuccess(response)
} else {
onFailure?.invoke(status)
}
} catch (e: IOException) {
e.printStackTrace()
}
}
}
我正在调用上面的类:
ReceiptRecognitionApi.kt
fun parseReceipt(file: File, cb: (String) -> Unit) {
println("parseReceipt_1")
Thread {
val multipartReq = Multipart(URL(baseUrl))
multipartReq.addHeaderField("apikey", taggunApiKey)
multipartReq.addHeaderField("Accept", "application/json")
multipartReq.addFilePart("file", file, "receipt.jpg", "image/jpeg")
multipartReq.upload(
onSuccess = { response: String ->
cb(response)
},
onFailure = { responseCode: Int ->
cb("$responseCode")
})
}.start()
}
问题是在初始化 Multipart 对象后,我无法向其附加任何 header 或数据。例如。如果 parseReceipt
函数调用中的两个 addHeaderField
调用移动到 Multipart.ktinit block >, header 在请求中,否则不在。
我在这里做错了什么?
最佳答案
使用第三方库解决了我的问题:
Fuel.upload(path = baseUrl, method = Method.POST)
.header(TaggunConstants.taggunHeader(taggunApiKey))
.dataParts { _, _ -> listOf(DataPart(file, "file", "image/jpeg")) }
.responseJson { _, _, result ->
result.fold(
success = { data ->
cb(gson.fromJson(data.content, Receipt::class.java))
},
failure = { error ->
println("An error of type ${error.exception} happened: ${error.message}")
cb(null)
}
)
}
关于android - Android 上的 Kotlin 多部分请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53170549/
我正在查看Kotlin Github page我注意到 Kotlin 语言本身大部分是用 Kotlin 编写的:我只是想知道,一种语言怎么可能大部分都是用它自己的语言编写的?在您可以使用正在创建的语言
我有以下非常简单的 kotlin 代码来演示中缀函数 com.lopushen.demo.presentation 包 fun main(args: Array) { print("Hello
我在 Java 中有 2 个模型类,其中一个扩展了另一个 @UseStag public class GenericMessages extends NavigationLocalizationMap
Kotlin 代码 runBlocking { flow { for (i in 0..4) { println("Emit $i")
这三个 Kotlin 插件和它们的实际作用有什么区别? plugins { id 'kotlin-android' id 'org.jetbrains.kotlin.android'
我正在为某些现有库添加 Kotlin 原生 linuxX64 目标支持。库已成功编译,但在运行测试用例时,出现以下运行时错误: kotlin.native.concurrent.InvalidMuta
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 2 年前。 Improve t
我创建了一个类并向其添加了一个与成员函数具有相同签名的扩展,并执行了这个方法,它总是执行成员方法。 class Worker { fun work() = "...working" } fun
我知道传递给函数的参数将被视为“val”,即使变量被初始化为“var”。但这对我来说一直是个问题。在下面的示例代码中,我想通过使用函数“changeNum”修改变量“num”的值。但当然,Kotlin
现在,我正在尝试用 Kotlin 重写我的 Java 应用程序。然后,我遇到了日志语句,比如 log.info("do the print thing for {}", arg); 所以我有两种方法可
有点出名article关于许多语言的异步编程模型的状态,指出它们存在“颜色”问题,特别是将生态系统分为两个独立的世界:异步和非异步。以下是这种语言的属性: 每个函数都有一种颜色,红色或蓝色(例如asy
因为 KDoc 文档生成引擎是 abandoned in favor of Dokka , Kotlin 文档应该称为“KDoc 注释”,还是“Dokka 注释”? 最佳答案 如所述here , KD
我想在可空对象上传递函数引用。以 Android 为例,假设我想使用 Activity#onBackPressed来自作为该事件的子级的片段。 如果我想调用这个函数,我可以很容易地做到 activit
我有一个列表 (x, y)其中y只能是 0 或 1 这样 例如: [(3, 0), (3, 1), (5, 1)] [(5, 0), (3, 1), (5, 1)] [(1, 1), (3, 1),
从强类型语言的定义来看: A strongly-typed programming language is one in which each type of data (such as intege
这不能编译的事实是否意味着它们不是一流的类型? fun foo(s: String): Int = s.length // This won't compile. val bar = foo 有没有办
如果在 Java i++是一个表达式和 i++;是一个表达式语句,分号(;) 在 Kotlin 中是可选的,是 i++ Kotlin 中的表达式或表达式语句? 最佳答案 i++是一个表达式,因为它有一
代码(如下所示)是否正确?它取自 Kotlin-docs.pdf 的第 63 页,这也是 https://kotlinlang.org/docs/reference/generics.html 的最后
我正在尝试使用 Kotlin 为 Android 的一些全局 API 解析器(检查网络连接、调用 API 并通过来自源的单个调用返回格式化数据),并且在某些时候我不得不创建一个通用类型 object就
kotlinlang 中的任务: 使用月份变量重写此模式,使其与格式 13 JUN 1992(两位数字、一个空格、一个月份缩写、一个空格、四位数字)中的日期相匹配。 答案是:val month = "
我是一名优秀的程序员,十分优秀!