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

LoadResource

LoadResource

Since Apache Ant 1.7

Description

Load a text resource into a single property. Unless an encoding isspecified, the encoding of the current locale is used. Resources toload are specified as nested resource elements or singleelement resource collections. If the resource content is empty (maybe afterprocessing a filterchain) the property is not set.

Since properties are immutable, the task will not change the value of an existing property.

Parameters

Attribute Description Required
property property to save to Yes
encoding encoding to use when loading the resource No
failonerror Whether to halt the build on failure No, default "true"
quiet Do not display a diagnostic message (unless Ant has been invoked with the -verbose or -debug switches) or modify the exit status to reflect an error. Setting this to "true" implies setting failonerror to "false". No, default "false"

The LoadResource task supports nested FilterChains.

Examples

<loadresource property="homepage">  <url url="http://ant.apache.org/index.html"/></loadresource>
Load the entry point of Ant's homepage into property "homepage"; an<echo> can print this.

For more examples see the loadfile task.

(Sebelumnya) LoadPropertiesLocal (Berikutnya)