"StringTransformer", stringTransformer);
mTransformer = (LineTransformer) ReflectionSupport
.createObject(transformerClassName);
}
AS400FileRecordDescription recordDescription = new AS400FileRecordDescription(
mAS400System, mQSYSObject.getPath());
// Set record format of the file.
RecordFormat[] format;
try
{
format = recordDescription.retrieveRecordFormat();
mOriginFile.setRecordFormat(format[0]);
// Open the file.
mOriginFile.open(AS400File.READ_WRITE, 0,
AS400File.COMMIT_LOCK_LEVEL_NONE);
}