如何从 Ant 构建脚本执行交互式应用程序



来自 http://ant.apache.org/manual/Tasks/exec.html :

请注意,您无法与 分叉程序,唯一的发送方式 输入是通过输入和 输入字符串属性。另请注意 从 Ant 1.6 开始,任何读取的尝试 分叉程序中的输入将 接收 EOF (-1(。这是一个变化 来自蚂蚁 1.5,这样的尝试 会阻止。

如何从 ant 启动交互式控制台程序并与之交互?

我想做的类似于 drush sqlc 功能,即使用正确的数据库凭据启动 mysql 客户端解释器,但不限于此用例。

下面是一个示例用例:

<project name="mysql">
  <target name="mysql">
    <exec executable="mysql">
      <arg line="-uroot -p"/>
    </exec>
  </target>
</project>

使用蚂蚁运行时:

$ ant -f mysql.xml mysql
Buildfile: /home/ceefour/tmp/mysql.xml
mysql:
Enter password:
BUILD SUCCESSFUL
Total time: 2 seconds

输入密码后,它会立即退出。

将此与直接在 shell 上执行时发生的情况(预期行为(进行比较:

$ mysql -uroot -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 1122
Server version: 5.1.58-1ubuntu1 (Ubuntu)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
mysql>

您可以通过 shell 启动命令,将标准输入/输出/错误从/重定向到/重定向到/到 /dev/tty ,这对应于进程的控制终端。

<target name="dbshell" description="Open a shell for interactive tasks">
  <exec executable="/bin/sh">
    <arg value="-c"/>
    <arg value="mysql -u root -p &lt; /dev/tty &gt; /dev/tty 2&gt; /dev/tty"/>
  </exec>
</target>

我尝试过在 cosnole 上运行,如果你不分叉它可以工作。正如文档中也提到的。

除了 eclipse 之外,还有其他方法可以配置输入处理程序。

正如这里所承认的。http://www.coderanch.com/t/419646/tools/java-program-accept-user-input

完成这项工作的干净方法http://www.myeclipseide.com/PNphpBB2-viewtopic-t-25337.html

相关内容

  • 没有找到相关文章

最新更新