当我的手机上没有互联网或者URL不存在时,这种方法没有做任何事情既不崩溃也不停止搜索。 我试过这个:
doAsync{
val json:String
json = try {
URL("http://10.0.2.2:8888/bac/orient.php?ort=1").readText()
}catch (e: IOException){
e.printStackTrace()
""
}
uiThread{toast(json)}
}