org.apache.tools.ant.utilClass ConcatFileInputStream
- java.lang.Object
- java.io.InputStream
- org.apache.tools.ant.util.ConcatFileInputStream
- All Implemented Interfaces:
- java.io.Closeable, java.lang.AutoCloseable
public class ConcatFileInputStream extends java.io.InputStream
SpecialInputStream
that will concatenate the contents of an array of files.
Constructor Summary
Constructors Constructor and Description ConcatFileInputStream(java.io.File[] file)
Construct a newConcatFileInputStream
with the specifiedFile[]
.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description void
close()
Close the stream.void
log(java.lang.String message, int loglevel)
Log a message with the specified logging level.int
read()
Read a byte.void
setManagingComponent(ProjectComponent pc)
Set a managingTask
for thisConcatFileInputStream
.void
setManagingTask(Task task)
Set a managingTask
for thisConcatFileInputStream
.
Constructor Detail
ConcatFileInputStream
public ConcatFileInputStream(java.io.File[] file) throws java.io.IOExceptionConstruct a newConcatFileInputStream
with the specifiedFile[]
.
- Parameters:
file
-File[]
.- Throws:
java.io.IOException
- if I/O errors occur.
Method Detail
close
public void close() throws java.io.IOExceptionClose the stream.
- Specified by:
close
in interfacejava.io.Closeable
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Overrides:
close
in classjava.io.InputStream
- Throws:
java.io.IOException
- if there is an error.
read
public int read() throws java.io.IOExceptionRead a byte.
- Specified by:
read
in classjava.io.InputStream
- Returns:
- the byte (0 - 255) or -1 if this is the end of the stream.
- Throws:
java.io.IOException
- if there is an error.
setManagingTask
public void setManagingTask(Task task)Set a managingTask
for thisConcatFileInputStream
.
- Parameters:
task
- the managingTask
.
setManagingComponent
public void setManagingComponent(ProjectComponent pc)Set a managingTask
for thisConcatFileInputStream
.
- Parameters:
pc
- the managingTask
.
log
public void log(java.lang.String message, int loglevel)Log a message with the specified logging level.
- Parameters:
message
- theString
message.loglevel
- theint
logging level.