kotlin.concurrent.thread{
val url = "https://hangj.cnblogs.com/"
val res = try { java.net.URL(url).readText() } catch (ex: Exception) { return@thread }
runOnUiThread { println("res: $res") }
}
相关文章
- 04-14Android开发学习笔记——Kotlin协程
- 04-14记录学习在Android中使用kotlin.coroutines
- 04-14GenseeSDK 使用Kotlin要注意TODO&Android Studio关闭TODO
- 04-14android-如何在Kotlin中模拟对象?
- 04-14security.web.firewall.RequestRejectedException: The request was rejected because the URL contained a
- 04-14如何在android中创建url预览?
- 04-14【Android+Kotlin】NestedScrollView
- 04-14如何从Android WebView中的远程URL访问本地资产?
- 04-14android – Rx Kotlin:map函数无法推断返回类型
- 04-14android – Kotlin:如何检查带有lateinit属性的变量是否已初始化