根据 HTTP GET 请求的响应设置 ANT 属性
Set ANT property from the response of a HTTP GET request
我是 ANT 的新手,我需要找到一种方法将 HTTP GET 请求的输出读取到 属性 中,以便稍后在构建脚本中使用它。
我尝试使用 https://ant.apache.org/manual/Tasks/get.html 但没有找到可用的参数。我正在使用 ant 1.9.6 和最新的 ant contrib 版本
谢谢!
使用 <loadresource> task with a nested <url> 资源:
<loadresource property="content">
<url url="https://google.com"/>
</loadresource>
我是 ANT 的新手,我需要找到一种方法将 HTTP GET 请求的输出读取到 属性 中,以便稍后在构建脚本中使用它。
我尝试使用 https://ant.apache.org/manual/Tasks/get.html 但没有找到可用的参数。我正在使用 ant 1.9.6 和最新的 ant contrib 版本
谢谢!
使用 <loadresource> task with a nested <url> 资源:
<loadresource property="content">
<url url="https://google.com"/>
</loadresource>