java.lang.Object
com.ibm.jzos.RDWOutputRecordStream
This class is a wrapper that writes RDW (Record Descriptor Word) delineated
records to an OutputStream.
For example usage, see the sample class:
com.ibm.jzos.sample.dfsort.DfSortVariableJavaToDataset
- Since:
- 2.1.0
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct an instance of RDWOutputRecordStream. -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Close the underlying OutputStreamvoid
write
(byte[] bytes) Write the supplied bytes to the underlying OutputStream preceded by a 4 byte RDW.void
write
(byte[] bytes, int offset, int length) Write the supplied bytes to the underlying OutputStream preceded by a 4 byte RDW.
-
Constructor Details
-
RDWOutputRecordStream
Construct an instance of RDWOutputRecordStream. Supplying a BufferedOutputStream will generally result in better performance.- Parameters:
os
- the OutputStream that will receive the RDW delineated records
-
-
Method Details
-
close
Close the underlying OutputStream- Throws:
IOException
-
write
Write the supplied bytes to the underlying OutputStream preceded by a 4 byte RDW.- Parameters:
bytes
-- Throws:
IOException
-
write
Write the supplied bytes to the underlying OutputStream preceded by a 4 byte RDW.- Parameters:
bytes
-- Throws:
IOException
-