We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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 {
}
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).
The text was updated successfully, but these errors were encountered: