gpt4 book ai didi

json - groovy获取http解析json/xml

转载 作者:行者123 更新时间:2023-12-01 06:51:06 25 4
gpt4 key购买 nike

嘿,我有这个演讲要做:

  • 使用solr api,请使用以下网址:http://localhost:8983/solr/select/?q=tree
  • 通过json / xml获取答案,将其反序列化为 map 对象

  • 最好的方法是什么?我想要一些提示。
    谢谢您,RR

    附言我在这里搜索,但是我发现例子太复杂了,难以理解。

    最佳答案

    是否:

    def json = new JsonSlurper().parseText( new URL( 'http://localhost:8983/solr/select/?q=tree' ).text )

    带您去想去的地方?

    是的,因此这是2.0之前的Grails,因此不能使用 JsonSlurper,因为它需要Groovy 1.8+

    你能试一下吗:
    def json = grails.converters.JSON.parse( new URL( 'http://localhost:8983/solr/select/?q=tree' ).text )

    关于json - groovy获取http解析json/xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8324739/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com