excel2json icon indicating copy to clipboard operation
excel2json copied to clipboard

把Excel表转换成json对象,并保存到一个文本文件中。

Results 18 excel2json issues
Sort by recently updated
recently updated
newest added

#### 如图,`empty`表的`name_en`字段暂无翻译,所以都暂时留白,这种情况下导表会非常缓慢 ![P220616-164807](https://user-images.githubusercontent.com/11343587/174032045-afd36b5c-0864-4421-8313-00baa57c3932.png) #### 速度如图所示 ![P220616-164313](https://user-images.githubusercontent.com/11343587/174032069-18107ce5-c75b-488b-8d2c-0b82d231bb5a.png) 经测试,有表头但没有内容的情况就会很慢,任意一行有内容都会使速度恢复正常 #### 测试文件如下: [empty.xlsx](https://github.com/neil3d/excel2json/files/8917320/empty.xlsx) [normal.xlsx](https://github.com/neil3d/excel2json/files/8917325/normal.xlsx)

转换中,“\”会重复输出成两个“\\”

Bumps [SharpZipLib](https://github.com/icsharpcode/SharpZipLib) from 1.2.0 to 1.3.3. Release notes Sourced from SharpZipLib's releases. v1.3.3 Another minor release, containing security fixes and smaller bugfixes. Fixes: 🐛 specialized tar extract traversal by nils...

dependencies

有Bug还是用1.4.2好

原因:在Program.Options中,有多个重复的**-l**参数 ![image](https://user-images.githubusercontent.com/19319405/145132790-0d476359-42bc-4bef-8ec4-f712ad9bcfaf.png)

这个dos命令无效呢? ![image](https://user-images.githubusercontent.com/15027345/143231978-32d6ba7b-1c5b-437c-9b92-9c20a763ff0a.png) ![image](https://user-images.githubusercontent.com/15027345/143231893-d099fc91-0909-41cf-97d8-b739cecdb6d0.png) 但是用gui勾选 ![image](https://user-images.githubusercontent.com/15027345/143231731-89b7b6e8-1c18-4091-a5dc-e9335d9327ce.png) 这个确实可以用 ![image](https://user-images.githubusercontent.com/15027345/143231926-d5911595-cd52-4d98-8931-5254b5716771.png)

![image](https://user-images.githubusercontent.com/24385053/142424147-a99c3639-a74e-484d-8b8a-7892f7125ea5.png) 如图,我有一个字段是string类型的,但是程序根据第一个字段1自动识别成了数字格式,这导致我空的项变成了0.0,请问有办法可以根据第二行来进行字段格式的识别吗?

https://github.com/neil3d/excel2json/issues/51 这个issue里的中文也能看到问题。。。 当然复制出来是好的

![image](https://user-images.githubusercontent.com/22338989/140021060-7f2f4e2d-14c3-474d-a4a2-06906585e487.png) 如图,版本1.4.3、1.4.2都试过 ![image](https://user-images.githubusercontent.com/22338989/140021135-904cd853-04d9-4ab0-9626-9447a7f22d77.png)

以前使用int来标记该列的文本以数字的形式处理,string标记该列的文本是字符串,同时如果是json格式的字符串也可以额外处理。 但是经过测试发现,至少从1.4.2开始,这个标记应该已经无效了,实际是以具体的文本为导向了。 个人以为还是加个判断为好,优先已字段标记,对于可能是json的字符串直接以‘json’标记。