是否可以使用ANT任务检查端口是否打开?
我需要执行flexunit任务,但在我开始这个任务之前,我需要检查另一个flexunit任务是否没有运行并阻塞所需的端口。
谢谢你的建议,
阵风
使用ant套接字条件。
<target name="check-port" description="Check whether Tomcat is running">
<echo message="Checking whether Tomcat is running"/>
<condition property="tomcat.running">
<socket server="${tomcat.host}" port="${tomcat.port}"/>
</condition>
</target>
http://ant.apache.org/manual/Tasks/conditions.html