1

下面的代码:

def http = new HTTPBuilder( 'http://twitter.com/statuses/' )

http.get( path: 'user_timeline.json', 
    query: [id:'httpbuilder', count:5] ) { resp, json ->

    println resp.status

    json.each {  // iterate over JSON 'status' object in the response:
        println it.created_at
        println '  ' + it.text
    }
}

为什么会出现异常?我使用来自http://groovy.codehaus.org/modules/http-builder/doc/json.html的相同代码,它应该可以工作。

4

1 回答 1

1

这是 IDE 的问题,Eclipse groovy 插件不能很好地工作。

于 2011-10-12T01:49:25.033 回答