Hi,
Thanks for your reply. The build files are auto-generated by Netbeans 6 and
due to the size of them I can't post them here (mailer rejects the email).
I've posted the run target below:
<target depends="init,compile" description="Run a main class."
name="run">
<j2seproject1:java>
<customize>
<arg line="${application.args}"/>
</customize>
</j2seproject1:java>
</target>
The variable ${application.args} is: <property name="application.args"
value=""/>
If this is no use please let me know and I'll try and alternative way of
posting the build files.
Thanks again!
Robert
On Jan 8, 2008 12:48 PM, <[EMAIL PROTECTED]> wrote:
> What is your buildfile?
>
> Jan
>
> > -----Ursprüngliche Nachricht-----
> > Von: John Hendrie [mailto:[EMAIL PROTECTED]
> > Gesendet: Dienstag, 8. Januar 2008 12:55
> > An: [email protected]
> > Betreff: Getting Ant to print the arguments of
> > System.out.print() calls
> >
> > Hi,
> >
> > I'm sorry if this is a really obvious question but I'm having trouble
> > getting Ant to print System.out.print() calls. The archive
> > throws up a few
> > related posts but with no answers.
> >
> > I have a simple example:
> >
> > public class Main {
> >
> > public static void main(String[] args) {
> > System.out.print("Hello");
> > System.out.flush();
> >
> > while (true) {
> > try {
> > Thread.sleep(1000);
> > } catch (InterruptedException ex) {
> > ex.printStackTrace();
> > }
> > }
> > }
> > }
> >
> > Ant doesn't output "Hello", I have to exit the Java app for
> > it to appear.
> > Any ideas on how I can solve this?
> >
> > Thanks!
> > John
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>