27 lines
825 B
XML
Raw Normal View History

2015-11-03 12:00:44 -08:00
<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="newio"/>
<property name="excludedfiles" value=""/>
<import file="../Ant-Common.xml"/>
<import file="../Ant-Clean.xml"/>
<target name="run" description="Compile and run" depends="build">
<jrun cls="AvailableCharSets" />
<jrun cls="BufferToText" />
<jrun cls="ChannelCopy" arguments="ChannelCopy.java test.txt" />
<jrun cls="Endians" />
<jrun cls="FileLocking" />
<jrun cls="GetChannel" />
<jrun cls="GetData" />
<jrun cls="IntBufferDemo" />
<jrun cls="LargeMappedFiles" />
<jrun cls="LockingMappedFiles" />
<jrun cls="MappedIO" />
<jrun cls="TransferTo" arguments="TransferTo.java TransferTo.txt" />
<jrun cls="UsingBuffers" />
<jrun cls="ViewBuffers" />
</target>
</project>