You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/en-US/docs/advance_api.mdx
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ Number conversion, using `String` to receive Excel number format data will trigg
76
76
| xlsxSAXParserFactoryName | Empty | Specifies the name of the class used for sax reading, for example: `com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl`. |
77
77
| useDefaultListener | true |`@since 2.1.4` <br/>By default, `ModelBuildEventListener` is added to help convert to the object passed in. If set to `false`, it will not assist in converting objects, and custom listeners will receive a `Map<Integer, CellData>` object. If you still want to receive `class` objects, call the `readListener` method and add custom `beforeListener`, `ModelBuildEventListener`, and custom `afterListener`. |
78
78
| extraReadSet | Empty | Set of additional content to be read, not read by default. |
79
-
| readDefaultReturn | STRING | `@since 3.2.0`<br/>STRING: Returns an array of Map<Integer,String>, the return value is the content you see in the excel cell without clicking on it.<br/>ACTUAL_DATA: Returns an array of Map<Integer,Object>, the actual stored data, will automatically convert types, Object type can be `BigDecimal`, `Boolean`, `String`, `LocalDateTime`, null.<br/>READ_CELL_DATA: Returns an array of Map<Integer,ReadCellData<?>>,where`?`typereferstoACTUAL_DATA.
79
+
| readDefaultReturn | STRING | `@since 3.2.0`<br/>STRING: Returns an array of Map<Integer,Object>, the return value is the content you see in the excel cell without clicking on it.<br/>ACTUAL_DATA: Returns an array of Map<Integer,Object>, the actual stored data, will automatically convert types, Object type can be `BigDecimal`, `Boolean`, `String`, `LocalDateTime`, null.<br/>READ_CELL_DATA: Returns an array of Map<Integer,ReadCellData<?>>, where `?` type refers to ACTUAL_DATA.
80
80
81
81
## ReadSheet (just a Sheet in excel) parameters
82
82
| Name | Default Value | Description |
@@ -301,6 +301,8 @@ public void dropdownWrite() {
301
301
302
302
`ReadListener` is a generic interface, with the generic type being the type of object to be read (e.g., `DemoData`). Its core methods are as follows:
0 commit comments