--- [EMAIL PROTECTED] wrote:

> Hello Matt
> 
> I am kind of new to Ant. Can you explain with an
> example ?

Please keep communications on the list for the benefit
of the community.  As for an example of I/O
redirection, be sure to read the "I/O redirectors"
page accessible in the Ant manual under "Concepts and
types".  Now, you can capture the output of the java
task to a property in this way:

<java outputproperty="outputproperty"
classname="whatever" />

The following is equivalent:

<java classname="whatever">
  <redirector outputproperty="outputproperty" />
</java>

To add filtering:

<java classname="whatever">
  <redirector outputproperty="outputproperty">
    <outputfilterchain>
      <trim /> <!-- remove all blank lines -->
    </outputfilterchain>
  </redirector>
</java>

HTH,
Matt

> 
> Thanks
> srikrishna
> 
> -----Original Message-----
> From: Matt Benson [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, June 01, 2005 11:16 AM
> To: Ant Users List
> Subject: Re: capture java output to variable
> 
> 
> --- Matt Benson <[EMAIL PROTECTED]> wrote:
> > --- Mark Lybarger <[EMAIL PROTECTED]> wrote:
> > > the output property contains more than i'd like.
> > how
> > > can i "substring" the 
> > > output?
> > 
> > In addition to ant-contrib's propertyregex
> mentioned
> > elsewhere, when using <java>, <exec>, or <apply>
> you
> > can use a nested I/O <redirector> with filtering.
> 
> In Ant >= 1.6.2, that is.
> 
> -Matt
> 
> > 
> > -Matt
> > 
> > > 
> > > On 5/26/05, Dominique Devienne
> > <[EMAIL PROTECTED]>
> > > wrote:
> > > > 
> > > > How about <java outputproperty>? --DD
> > > >
> > > 
> > 
> > __________________________________________________
> > Do You Yahoo!?
> > Tired of spam?  Yahoo! Mail has the best spam
> > protection around 
> > http://mail.yahoo.com 
> > 
> >
>
---------------------------------------------------------------------
> > To unsubscribe, e-mail:
> > [EMAIL PROTECTED]
> > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> > 
> > 
> 
> 
>               
> __________________________________ 
> Discover Yahoo! 
> Use Yahoo! to plan a weekend, have fun online and
> more. Check it out! 
> http://discover.yahoo.com/
> 
>
---------------------------------------------------------------------
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 



                
__________________________________ 
Discover Yahoo! 
Have fun online with music videos, cool games, IM and more. Check it out! 
http://discover.yahoo.com/online.html

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to