I updated the getFieldLength() method in DbfField class with the following to fix. public int getFieldLength() { if (dataType == 'C' && decimalCount > 0) { return fieldLength + (256 \* decimalCount); } return fieldLength; }
I updated the getFieldLength() method in DbfField class with the following to fix.
public int getFieldLength() {
if (dataType == 'C' && decimalCount > 0) {
return fieldLength + (256 * decimalCount);
}
return fieldLength;
}