
Product
Introducing Socket Fix for Safe, Automated Dependency Upgrades
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
embulk-parser-poi_excel
Advanced tools
Parses Microsoft Excel files(xls, xlsx) read by other file input plugins.
This plugin uses Apache POI.
in:
type: any file input plugin type
parser:
type: poi_excel
sheets: ["DQ10-orb"]
skip_header_lines: 1 # first row is header.
columns:
- {name: row, type: long, value: row_number}
- {name: get_date, type: timestamp, cell_column: A, value: cell_value}
- {name: orb_type, type: string}
- {name: orb_name, type: string}
- {name: orb_shape, type: long}
- {name: drop_monster_name, type: string}
if omit value, specified cell_value
.
if omit cell_column when value is cell_value
, specified next column.
*
, ?
. (list of string, required)row
, column
or sheet
. default: row
)row
(skip columns when record_type=column
). ignored when record_type=sheet
. (integer, default: 0
)cell_value
)row
)column
)A1
, Sheet1!B3
. (string, not required)%4.2f
. (default: Java's Double.toString())cell_style
, cell_font
, etc. see below. (list of string)constant
)evaluate
or cashed_value
. default: evaluate
)exception
)exception
)none
, linear_search
, tree_search
or hash_search
, default: hash_search
)cell_value
: value in cell.
cell_formula
: formula in cell. (if cell is not formula, same cell_value
.)
cell_style
: all cell style attributes. returned json string. see attribute_name. (type required string
)
cell_font
: all cell font attributes. returned json string. see attribute_name. (type required string
)
cell_comment
: all cell comment attributes. returned json string. see attribute_name. (type required string
)
cell_type
: cell type. returned Cell.getCellType() of POI.
cell_cached_type
: cell cached formula result type. returned Cell.getCachedFormulaResultType() of POI when CellType==FORMULA, otherwise same as cell_type
(returned Cell.getCellType()).
file_name
: excel file name.
sheet_name
: sheet name.
row_number
: row number(1 origin).
column_number
: column number(1 origin).
constant
: constant value.
constant.
value: specified value.constant
: null.Basically used for record_type=row
.
A
,B
,C
,...: column number of "A1 format".+
: next column.+
name: next column of name.+
number: number next column.-
: previous column.-
name: previous column of name.-
number: number previous column.=
: same column.=
name: same column of name.Basically used for record_type=column
.
valueがcell_style
, cell_font
, cell_comment
のとき、デフォルトでは、全属性を取得してJSON文字列に変換します。
(JSON文字列を返すので、typeはstring
である必要があります)
columns:
- {name: foo, type: string, cell_column: A, value: cell_style}
attribute_nameを指定することで、指定された属性だけを取得してJSON文字列に変換します。
columns:
- {name: foo, type: string, cell_column: A, value: cell_style, attribute_name: [border_top, border_bottom, border_left, border_right]}
また、cell_style
やcell_font
の直後にピリオドを付けて属性名を指定することにより、その属性だけを取得することが出来ます。
この場合はJSON文字列にはならず、属性の型に合うtypeを指定する必要があります。
columns:
- {name: foo, type: long, value: cell_style.border}
- {name: bar, type: long, value: cell_font.color}
なお、cell_style
やcell_font
では、cell_columnを省略した場合は直前と同じ列を対象とします。
(cell_value
では、cell_columnを省略すると次の列に移る)
Processing method of Cell error (#DIV/0!
, #REF!
, etc).
columns:
- {name: foo, type: string, cell_column: A, value: cell_value, on_cell_error: error_code}
constant
: set null. (default)constant.
value: set specified value.error_code
: set error code.exception
: throw exception.Processing method of formula.
columns:
- {name: foo, type: string, cell_column: A, value: cell_value, formula_handling: cashed_value}
evaluate
: evaluate formula. (default)cashed_value
: cashed value in cell.Processing method of evaluate formula error.
columns:
- {name: foo, type: string, cell_column: A, value: cell_value, on_evaluate_error: constant}
constant
: set null.constant.
value: set specified value.exception
: throw exception. (default)Replace formula before evaluate.
columns:
- {name: foo, type: string, cell_column: A, value: cell_value, formula_replace: [{regex: aaa, to: "A${row}"}, {regex: bbb, to: "B${row}"}]}
${row}
is replaced with the current row number.
${column}
is replaced with the current column string.
Processing method of convert error. ex) Excel boolean to Embulk timestamp
columns:
- {name: foo, type: timestamp, format: "%Y/%m/%d", cell_column: A, value: cell_value, on_convert_error: constant.9999/12/31}
constant
: set null.constant.
value: set specified value.exception
: throw exception. (default)Options of individual sheet.
parser:
type: poi_excel
sheets: [Sheet1, Sheet2]
columns:
- {name: date, type: timestamp, cell_column: A}
- {name: foo, type: string}
- {name: bar, type: long}
sheet_options:
Sheet1:
skip_header_lines: 1
columns:
foo: {cell_column: B}
bar: {cell_column: C}
Sheet2:
skip_header_lines: 0
columns:
foo: {cell_column: D}
bar: {value: constant.0}
sheet_options is map of sheet name.
Map values are skip_header_lines, columns.
columns is map of column name.
Map values are same columns in parser (excluding name
, type
).
$ embulk gem install embulk-parser-poi_excel
$ ./gradlew test
$ ./gradlew package
FAQs
Unknown package
We found that embulk-parser-poi_excel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.