Class NamedDataInputStream
java.lang.Object
java.io.InputStream
java.io.FilterInputStream
java.io.DataInputStream
com.sun.tools.corba.ee.idl.som.cff.NamedDataInputStream
- All Implemented Interfaces:
Closeable
,DataInput
,AutoCloseable
This class is used to associate a filename with a DataInputStream
The host platform's file naming conventions are assumed for the filename.
- Version:
- 1.16, 07/27/07
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe name of the file associated with the DataInputStream.boolean
Indicates whether or not the file is contained in a .zip file.Fields inherited from class java.io.FilterInputStream
in
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
NamedDataInputStream
(InputStream in, String fullyQualifiedName, boolean inZipFile) -
Method Summary
Methods inherited from class java.io.DataInputStream
read, read, readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedShort, readUTF, readUTF, skipBytes
Methods inherited from class java.io.FilterInputStream
available, close, mark, markSupported, read, reset, skip
-
Field Details
-
fullyQualifiedFileName
The name of the file associated with the DataInputStream. -
inZipFile
public boolean inZipFileIndicates whether or not the file is contained in a .zip file.
-
-
Constructor Details
-
NamedDataInputStream
-