Skip to content
New issue

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

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

Open
iamtech123 opened this issue Jan 24, 2025 · 0 comments

Comments

@iamtech123
Copy link

iamtech123 commented Jan 24, 2025

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).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant