Begin changeLineDataRecordWriter class

The LineDataRecordWriter class writes the record data, in line data format, to an OutputStream. The data is translated into bytes using the specified CCSID. The format of the data is determined by the record format associated with the record.

Using LineDataRecordWriter requires that the following record format attributes be set:

How does it work in conjunction with the Record or the RecordFormat classes?

LineDataRecordWriter class methods allow you to:

Example (not from javadoc) needed

     // Example using this class.
     LineDataRecordWriter rw = new LineDataRecordWriter();
     ...more code...

Do we integrate a new example for this class with the existing examples for the other record-level access classes? End change