gpt4 book ai didi

android - 带有 Kotlin 的 Android 中的 HTTP 请求

转载 作者:IT老高 更新时间:2023-10-28 13:28:08 28 4
gpt4 key购买 nike

我想使用 POST 方法进行登录验证,并使用 GET 方法获取一些信息。

我已经有了之前项目的 URL、服务器用户名和密码。

最佳答案

对于 Android,Volley是一个开始的好地方。对于所有平台,您可能还想查看 ktor客户或 http4k这两个都是很好的库。

不过,您也可以使用标准 Java 库,例如 java.net.HttpURLConnection这是 Java SDK 的一部分:

fun sendGet() {
val url = URL("http://www.google.com/")

with(url.openConnection() as HttpURLConnection) {
requestMethod = "GET" // optional default is GET

println("\nSent 'GET' request to URL : $url; Response Code : $responseCode")

inputStream.bufferedReader().use {
it.lines().forEach { line ->
println(line)
}
}
}
}

或者更简单:

URL("https://google.com").readText()

关于android - 带有 Kotlin 的 Android 中的 HTTP 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46177133/

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