fork download
  1. fun main() {
  2. val url = "https://a...content-available-to-author-only...i.com/v1/current.json?key=b8392b2fc6574691b3595703251212&q=Tehran&aqi=no"
  3.  
  4. try {
  5. val response = java.net.URL(url).readText()
  6. val keyword = "\"text\":\""
  7. val start = response.indexOf(keyword) + keyword.length
  8. val end = response.indexOf("\"", start)
  9. val weatherStatus = response.substring(start, end)
  10. println("وضعیت هوا در تهران: $weatherStatus")
  11. } catch (e: Exception) {
  12. println("خطا: ${e.message}")
  13. }
  14. }
Success #stdin #stdout 0.87s 62352KB
stdin
Standard input is empty
stdout
خطا: api.weatherapi.com