up vote 8 down vote favorite
2
share [g+] share [fb]

I must to implement command : java -jar test.jar page.xml | mysql -u user -p base in ant. So i Have tried with this task:

<java jar="test.jar" fork="true">
  <arg line="page.xml | mysql -u user -p base"/>
</java>

But i have got en exception with pipe - "|" :

 java.lang.IllegalArgumentException: Input already set; can't set to |

So, that's the problem:)

link|improve this question

78% accept rate
feedback

5 Answers

up vote 17 down vote accepted

The pipe (|) can only be used in a shell script. You're passing it as an argument to the java process.

So you need to execute a shell script. You can do this by executing (say) bash -c and passing the above as a shell statement (albeit inline - you could write a separate script file but it seems a bit of an overhead here)

  <exec executable="bash">
    <arg value="-c"/>
    <arg value="java -jar test.jar page.xml | mysql -u user -p base"/>
  </exec>
link|improve this answer
Thanks guys, it helps! – Le_Coeur Jul 27 '09 at 10:29
It helps, or it works? – Brian Agnew Jul 27 '09 at 10:31
wow, i just thought that it works, but not... I have got: No such file or directory – Le_Coeur Jul 27 '09 at 11:54
From what ? You may need to set your classpath (or similar - don't forget you're now spawning off a separate process) – Brian Agnew Jul 27 '09 at 12:00
1  
Porblem was in <arg value="...">, it should be <arg line="..."> But now it writes: /usr/bin/java: /usr/bin/java: cannot execute binary file – Le_Coeur Jul 27 '09 at 14:52
show 1 more comment
feedback

Another solution would be to wrap the java -jar test.jar page.xml | mysql -u user -p base into a separate script and call it with simple <exec> task.

link|improve this answer
feedback

I don't know if this was ever resolved, but I was having a similar problem which I solved by using the following:

<exec executable="bash">
    <arg value="-c"/>
    <arg line='"java -jar test.jar page.xml | mysql -u user -p base"'/>
</exec>

Just thought I would share.

link|improve this answer
feedback

There you are actually running a java command.

You need to use Exec task http://ant.apache.org/manual/Tasks/exec.html but not sure if there also you can run piped commands or not. Give it a try.

link|improve this answer
feedback

When you run a java program from Ant, the input and out from the program are captured by the Ant runtime - you can't try and redirect them elsewhere using that pipe.

If you want to do that, you might have better luck with the exec task, although that might suffer from the same problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.