Ant exec task: How can I read input from console stdin?

后端 未结 1 577
清歌不尽
清歌不尽 2020-12-18 08:10

I have a call to Ant exec task that needs to accept input from console stdin. Unfortunately, I cannot find a way to do this. The stdin filehandle seems closed

相关标签:
1条回答
  • 2020-12-18 08:37

    From the documentation of the task:

    Note that you cannot interact with the forked program, the only way to send input to it is via the input and inputstring attributes. Also note that since Ant 1.6, any attempt to read input in the forked program will receive an EOF (-1). This is a change from Ant 1.5, where such an attempt would block.

    You could try to use the input-task to prompt for input in the ant-buildfile and pass these input with the inputstring-attribute of exec. I can't think of a better option at the moment.

    0 讨论(0)
提交回复
热议问题