parse json with ant

Posted by paleozogt on Stack Overflow See other posts from Stack Overflow or by paleozogt
Published on 2010-03-26T21:57:14Z Indexed on 2010/03/29 3:13 UTC
Read the original article Hit count: 613

Filed under:
|

I have an ant build script that needs to pull files down from a web server. I can use the "get" task to pull these files down one by one. However, I'd like to be able to get a list of these files first and then iterate over the list with "get" to download the files. The webserver will report the list of files in json format, but I'm not sure how to parse json with ant.

Are there any ant plugins that allow for json parsing?

© Stack Overflow or respective owner

Related posts about ant

Related posts about JSON