'CSVToJSON
'Purpose : Convert an existing CSV file, to a JSON file.
'Method: drag a file over this script. It will parse your textfile and convert it to a JSON file.
set fso = wscript.createobject("scripting.filesystemobject")
if wscript.arguments.count > 0 then
 for each x in wscript.arguments
  iLines = 0
  strOutFile = x
  fso.movefile x, replace(x,".csv", "_input.csv")
  set objInFile = fso.opentextfile(replace(x,".csv", "_input.csv"))
  set objOutFile = fso.createtextfile(replace(x, ".csv", ".json"))
  
  'read header
   objOutFile.writeline"var data={""users"":["
   strHeader  = objInFile.readline
   strHeader = replace(strHeader, """", "")
   arrTitles = split(strHeader, "|")
   
  do until objInFile.AtEndOfStream
   strLine = objInFile.readline
   strLine = replace(strLine, """","")
   arrLine = split(strLine, "|")
   iCount=0
   iLines = iLines + 1
   objOutFile.writeline "{"
   do while iCount <= ubound(arrTitles)
    if iCount < ubound(arrTitles) then
     objOutFile.writeline """" & replace(arrTitles(iCount), " ", "_") & """" & ":" & """" & arrLine(iCount) & """" & ","
    else
     objOutFile.writeline """" & replace(arrTitles(iCount), " ", "_") & """" & ":" & """" & arrLine(iCount) & """"
    end if
    iCount = iCount +1
   loop
   objOutFile.writeline "},"
  loop
  objOutFile.writeline "{"
  objOutFile.writeline """O"":""O""}], ""count"":""" & iLines & """"
  objOutFile.writeline "}"
 next
 msgbox "Done."
else
 msgbox "drag csv files over this script for it to work !"
end if
External memory from my trainings. I used to teach Business Objects, Internet Development and Hardware at Xylos NV (http://www.xylos.com)
maandag, april 28, 2014
VBScript CSV to JSON
Abonneren op:
Reacties posten (Atom)
Geen opmerkingen:
Een reactie posten