2018년 9월 14일 금요일

Json string pretty 예쁘게 출력 portable


json 스트링 데이터를 예쁘게 출력해주는 유틸입니다.



AS-IS
"{ 'id' : 'ppusari', 'pw' : '1234', 'Input' : { 'Url' : 'http://www.google.com' }, 'Outputs' : [ { 'Key' : 'filename', 'PresetId' : 'webm' }, { 'Key' : 'filename2', 'PresetId' : 'h264', 'Captions' : 'test.smi' } ] }"

TO-BE
{
  "id" : "ppusari",
  "pw" : "1234",
  "Input" : {
    "Url" : "http://www.google.com"
  },
  "Outputs" : [ {
    "Key" : "filename",
    "PresetId" : "webm"
  }, {
    "Key" : "filename2",
    "PresetId" : "h264",
    "Captions" : "test.smi"
  } ]

source downloadhttp://ppusari.iptime.org/ppusarida/JsonPretty.git