【发布时间】:2019-09-04 01:04:22
【问题描述】:
打印文件的数据 这是文件内容
{
"nodes": {
"server.xyz": {
":ip": "192.168.56.5",
"ports": [],
":memory": 1024,
":bootstrap": "bootstrap-master.sh"
},
"client1.abc": {
":ip": "192.168.56.10",
"ports": [],
":memory": 1024,
":bootstrap": "bootstrap-node.sh"
},
"client1.def": {
":ip": "192.168.56.15",
"ports": [],
":memory": 1024,
":bootstrap": "bootstrap-node.sh"
}
}
}
我只想打印
server.xyz
client1.abc
client2.def
还有这个IP
192.168.56.5
192.168.56.10
192.168.56.15
【问题讨论】: