converting CSV/XLS to JSON? [closed] converting CSV/XLS to JSON? [closed] json json

converting CSV/XLS to JSON? [closed]


You can try this tool I made:

Mr. Data Converter

It converts to JSON, XML and others.

It's all client side, too, so your data never leaves your computer.


This worked perfectly for me and does NOT require a file upload:

https://github.com/cparker15/csv-to-json?files=1


Since Powershell 3.0 (shipped with Windows 8, available for Windows 7 and windows Server 2008 but not Windows Vista ) you can use the built-in convertto-json commandlet:

PS E:> $topicsjson = import-csv .\itinerary-all.csv | ConvertTo-Json PS E:\> $topicsjson.Length11909PS E:\> $topicsjson.getType()IsPublic IsSerial Name                                     BaseType                  -------- -------- ----                                     --------                  True     True     Object[]                                 System.Array              

Online Help Page on Technet