Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想设置条件来检查 rss 提要是向下还是向上。
示例代码
def url= 'http://'+ 'www.groovyblogs.org/feed/rss' def rss = new XmlParser().parse(url) rss.channel.item.title[0..9]*.text()
我如何检查 www.groovyblogs.org/feed/rss 是向上还是向下。我想在饲料下降时处理一些事情。
提前致谢
我想在饲料下降时处理一些事情。
您可以将上面的代码块包装在try并在catch.
try
catch
如果您想事先检查 url 是否正常工作,在 groovy 中测试 URL应该会有所帮助。