Код: Выделить всё
@Grab('io.github.http-builder-ng:http-builder-ng-core:1.0.3')
import static groovyx.net.http.HttpBuilder.configure
def astros = configure {
request.uri = 'http://api.open-notify.org/astros.json'
}.get()
println "There are ${astros.number} astronauts in space right now."
astros.people.each { p->
println " - ${p.name} (${p.craft})"
}
Когда я запускаю его со своего рабочего стола, все работает как положено:
Код: Выделить всё
There are 6 astronauts in space right now.
Код: Выделить всё
There are null astronauts in space right now.
Код: Выделить всё
Подробнее здесь: https://stackoverflow.com/questions/485 ... ull-object