Do you know how to make ant user interactive?

Submitted by: Administrator
The org.apache.tools.ant.input.InputHandler interface is used to implement the user input. To perform the user input, the application creates InputRequest object and this object will be passed to InputHandler. The user input will be rejected if it is invalid.

The InputHandler interface has exactly one method, by name handleInput(InputRequest request). This method throws org.apache.tools.ant.BuildException, if the input is invalid.
Submitted by: Administrator

Read Online Java ANT Job Interview Questions And Answers