在使用OkHttp配合協程使用時,可以使用OkHttp的異步請求方法和Kotlin協程來實現非阻塞的網絡請求。以下是一個簡單的示例代碼:
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.runBlocking
import kotlinx.coroutines.withContext
import okhttp3.OkHttpClient
import okhttp3.Request
fun main() {
val client = OkHttpClient()
runBlocking {
withContext(Dispatchers.IO) {
val request = Request.Builder()
.url("https://www.example.com")
.build()
val response = client.newCall(request).execute()
if (response.isSuccessful) {
val responseBody = response.body?.string()
println("Response: $responseBody")
} else {
println("Request failed")
}
}
}
}
在上面的示例中,我們使用runBlocking
創建一個協程作用域,并在withContext(Dispatchers.IO)
中調用OkHttp的異步請求方法execute()
來發起網絡請求。在這個協程作用域內,我們可以同步地處理網絡請求的響應,而不會阻塞主線程。