DbaseFileWriter constructor

DbaseFileWriter(
  1. DbaseFileHeader header,
  2. FileWriter channel, [
  3. Charset? charset,
  4. TimeZones? timeZone,
])

Create a DbaseFileWriter using the specified header and writing to the given channel.

@param header The DbaseFileHeader to write. @param out The Channel to write to. @param charset The charset the dbf is (will be) encoded in @throws IOException If errors occur while initializing.

Implementation

DbaseFileWriter(this.header, this.channel, [this.charset, this.timeZone]);