use of org.dbflute.helper.io.xls.DfTableXlsWriter in project dbflute-core by dbflute.
the class DfLReverseOutputHandler method createTableXlsWriter.
protected DfTableXlsWriter createTableXlsWriter(File xlsFile) {
// the XLS file should have all string cell type basically for replace-schema
final DfTableXlsWriter writer = new DfTableXlsWriter(xlsFile);
writer.stringCellType();
if (!_suppressLargeDataHandling) {
writer.largeDataHandling();
}
if (!_suppressQuoteEmptyString) {
writer.quoteEmptyString();
}
if (_cellLengthLimit != null) {
writer.cellLengthLimit(_cellLengthLimit);
}
return writer;
}
use of org.dbflute.helper.io.xls.DfTableXlsWriter in project dbflute-core by dbflute.
the class DfLReverseOutputHandler method createTableXlsWriter.
protected DfTableXlsWriter createTableXlsWriter(File xlsFile) {
// the XLS file should have all string cell type basically for replace-schema
final DfTableXlsWriter writer = new DfTableXlsWriter(xlsFile);
writer.stringCellType();
if (!_suppressLargeDataHandling) {
writer.largeDataHandling();
}
if (!_suppressQuoteEmptyString) {
writer.quoteEmptyString();
}
if (_cellLengthLimit != null) {
writer.cellLengthLimit(_cellLengthLimit);
}
return writer;
}
Aggregations