Skip to content

Writing to a data sheet will terminate when the text length exceeds 32767 characters. #69

@iamtech123

Description

@iamtech123

Issue : Writing to a data sheet will terminate when the text length exceeds 32767 characters.

Reproducible steps:
writer.addSheet(OtrDataMapper.class, otrData,headers);

Java Bean:

@sheet
public class DataMapper {

@SheetColumn("TC_ID")
private String TC;

@SheetColumn("REQ")
private String REQ;
@SheetColumn("EXPECTED")
private String EXPECTED;

@SheetColumn("ACTUAL")
private String ACTUAL;

@SheetColumn("RESULT")
private String RESULT;

public void setACTUAL(String ACTUAL) {
    this.ACTUAL = ACTUAL;
}

public void setRESULT(String RESULT) {
    this.RESULT = RESULT;
}

}

Write step:
writer.addSheet(DataMapper.class);

Writing stops when any of the field value exceeds 32767

Expected:
The text should be divided into <32767 segments and then printed in the following cells (columns).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions