excel表格转换为json格式字符串
⽇常⼯作中遇到⼀些Excel表格的数据,需要转换成json格式的字符串,怎么处理呢?可以使⽤这个⼯具:excel2json
⽤cmd进⼊⽂件解压所在的地址,敲⼊命令
excel2json --excel E:\a\student.xlsx --json E:\a\student.json --header 2 --array true
excel 字符串转数组意思是把E:\a\student.xlsx这个⽂件,转成E:\a\student.json这个,头有两⾏转换成数组格式的。
student.xlsx的格式是这样:头就是第⼀⾏和第⼆⾏。⽬前只⽀持转换.xlsx⽂件。
各参数解释:
-e, --excel Required. input excel file path.
-j, --json export json file path.
-s, --sql export SQL file path.
-p, --csharp export C# data struct code file path.
-h, --header Required. number lines in sheet as header.
-c, --encoding (Default: utf8-nobom) export file encoding.
-l, --lowcase (Default: False) convert filed name to lowcase.
-a, --array (Default: False) export as array, otherwise as dict object.

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。