Programming/node.js2018. 9. 7. 10:53

test.js

var exec = require('child_process').exec,

child;


child = exec("type test.txt", function(error, stdout, stderr)

{

console.log(stdout);

var obj = JSON.parse(stdout);

console.log(obj.name);

if(error !== null)

{

console.log(error);

}

}); 


test.txt

{

    "name": "식빵",

    "family": "웰시코기",

    "age": 1,

    "weight": 2.14

}


결과.. 으으 인코딩 건드리기 싫다...

아무튼 type으로 파일 내용 돌려받고(즉, 아무 명령어나 실행하고 그 결과를 받아)

JSON 포맷일 경우 파싱해서 사용가능한걸 실증!

D:\node_test>node test.js

{

    "name": "�Ļ�",

    "family": "�����ڱ�",

    "age": 1,

    "weight": 2.14

}

�Ļ� 


[링크 : http://tcpschool.com/json/json_basic_structure]

[링크 : https://www.w3schools.com/js/js_json_parse.asp]

'Programming > node.js' 카테고리의 다른 글

node.js jwt -JSON Web Token  (0) 2018.09.07
아직 쓸일은 없지만 걍 찾아본 node.js ssl 적용  (0) 2018.09.07
node.js express template  (0) 2018.09.06
node.js exec()  (0) 2018.09.06
node.js / express/ pug(jade) 문법  (0) 2018.09.05
Posted by 구차니