-
Notifications
You must be signed in to change notification settings - Fork 259
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
Support parsing rows to other data types than String[] #38
Comments
I am using this spring-batch-excel in our application, It is automatically converting the number fields with .0 to make it as number. Could you please let me know how to disable this auto conversion and let the RowMapper returns always string for all cloumns. |
If you've built |
The issue is that when using a streaming result the result is always a formatted cell value as a For a classis |
Columns in Excel files being batch processed may contain numbers or dates. Currently all rows are parsed into
String[]
(see Sheet line 47).spring-batch-excel
interfaces should use generics to support other representations of a row, such asObject[]
.The text was updated successfully, but these errors were encountered: