Cari di Apache Ant 
    Apache Ant User Manual
Daftar Isi
(Sebelumnya) EchopropertiesEJB Tasks (Berikutnya)
Apache Ant Tasks

EchoXML

EchoXML

Description

Echo nested XML to the console or a file. Since Apache Ant 1.7

Parameters

Attribute Description Required
file The file to receive the XML. If omitted nested XML will be echoed to the log. No
append Whether to append file, if specified. No
namespacePolicy Sets the namespace policy as defined by org.apache.tools.ant.util.DOMElementWriter.XmlNamespacePolicy. Valid values are "ignore," "elementsOnly," or "all." Default is "ignore". No

Parameters specified as nested elements

Nested XML content is required.

Examples

<echoxml file="subbuild.xml">  <project default="foo"> <target name="foo">  <echo>foo</echo> </target>  </project></echoxml>

Creates an Ant buildfile, subbuild.xml.

(Sebelumnya) EchopropertiesEJB Tasks (Berikutnya)