Le Thu, 23 Feb 2006 15:20:46 +0100, Mark Russell
<[EMAIL PROTECTED]> a écrit:
You are telling the compile command to only include the **/*.xml files
it probably should be **/*.java
No. It's well **/*.xml I want to give as argument. I don't use the "javac"
task (compile task) but the "java" task (execution of a java class
accepting a list of file names as input parameter). So my problem is to
get a space delimited list of file names and to add it to the list of
arguments to my java command.
Subsidiary question :
Is there a limit to the length of the string given as argument to a java
command ?
Thanks for your answers
A. ROY
ar wrote:
Hi all,
I'd like to give to provide to my java task a list of file names. I
don't
know how to do.
I tried:
<java classname="my.company.my.class.MyClass">
<classpath>
<fileset dir="${lib.dir}">
<include name="**/*.jar"/>
</fileset>
</classpath>
<arg line="--myoption=value" />
<fileset dir="${work.dir}/xml">
<include name="**/*.xml"/>
</fileset>
</java>
... but it doesn't work.
The java command I want to get is :
java -cp my_classpath my.company.my.class.MyClass --myoption=value
file1.xml file2.xml file3.xml file4.xml
Any idea ?
Regards
--A. ROY
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
--
A. ROY
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]