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
parseRecord(bean)
Your own example/test literally does nothing for writer.processRecord(bean) , prints empty values for the object.
writer.processRecord(bean)
Located in the src/test/java/com/univocity/parsers/examples/WriterExamples.java under test example005WriteFixedWidthUsingAnnotatedBean
example005WriteFixedWidthUsingAnnotatedBean
For the TestBean object :
TestBean
TestBean bean = new TestBean(); bean.setAmount(new BigDecimal("500.33")); bean.setComments("Blah,blah"); bean.setPending(false); bean.setQuantity(100);
It supposed to print:
amount pending date quantity comments 500.33. false ? 100 "Bla, blah"
But instead it prints:
amount pending date quantity comments ? ? ? ? ?
This explains why I couldn’t make it work...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Your own example/test literally does nothing for
writer.processRecord(bean)
, prints empty values for the object.Located in the src/test/java/com/univocity/parsers/examples/WriterExamples.java under test
example005WriteFixedWidthUsingAnnotatedBean
For the
TestBean
object :It supposed to print:
But instead it prints:
This explains why I couldn’t make it work...
The text was updated successfully, but these errors were encountered: