Kotlin 中的 HTTP GET 请求



我需要在 kotlin 中提供一个 HTTP GET 请求的示例。我有一个数据库,我已经做了 API 将信息提取到服务器。 作为最终结果,我需要在 android 布局中呈现 API json,在 'editText ' 中。 建议?我已经有这段代码了:

fun fetchJson(){
val url = "http://localhost:8080/matematica3/naoAutomatica/get"
val request = Request.Builder().url(url).build()
val client = OkHttpClient()
client.newCall(request).enqueue(object : Callback {
override fun onResponse(call: Call, response: Response) {
val body = response.body?.string()
println(body)
}
override fun onFailure(call: Call, e: IOException) {
println("Falhou")
}
}
}

创建一个 EditText 成员变量,以便您可以在回调函数中访问它

例如。

var editText: EditText? = null

在创建活动时初始化它

editText = findViewById<EditText>(R.id.editText)

回拨中的设置文本是这样的

client.newCall(request).enqueue(object : Callback {
override fun onFailure(call: Call?, e: IOException?) {
println("${e?.message}")
}
override fun onResponse(call: Call?, response: Response?) {
val body = response?.body()?.string()
println(body)
editText?.text = "${body.toString()}" \ or whatever else you wanna set on the edit text
}
})

你可以使用 kohttp 库。它是一个Kotlin DSL HTTP客户端。它支持square.okhttp的功能,并为它们提供了清晰的DSL。KoHttp 异步调用由协程提供支持。

val response: Deferred<Response> = "http://localhost:8080/matematica3/naoAutomatica/get".asyncHttpGet()

或用于更复杂的请求的 DSL 功能

val response: Response = httpGet {
host = "localhost"
port = 8080
path = "/matematica3/naoAutomatica/get"
}

您可以在文档中找到更多详细信息

因此,带有"回调"的呼叫将如下所示

val response: Deferred<Response> = "http://localhost:8080/matematica3/naoAutomatica/get".asyncHttpGet()
try {
response.await().use {
println(it.asString())
}
} catche (e: Exception) {
println("${e?.message}")
}

要使用 Gradle 获得它,请使用

compile 'io.github.rybalkinsd:kohttp:0.10.0'

相关内容

  • 没有找到相关文章