如何讀取json文件的數(shù)據(jù)

小億
127
2024-04-09 16:49:37

要讀取JSON文件的數(shù)據(jù),可以使用各種編程語(yǔ)言中提供的JSON解析庫(kù)來(lái)實(shí)現(xiàn)。下面是一些常用語(yǔ)言的示例:

  1. Python:
import json

# 打開(kāi)JSON文件
with open('data.json') as f:
    data = json.load(f)

# 打印數(shù)據(jù)
print(data)
  1. Java:
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;

// 讀取JSON文件
JSONParser parser = new JSONParser();
JSONObject data = (JSONObject) parser.parse(new FileReader("data.json"));

// 打印數(shù)據(jù)
System.out.println(data);
  1. JavaScript (Node.js):
const fs = require('fs');

// 讀取JSON文件
const data = JSON.parse(fs.readFileSync('data.json'));

// 打印數(shù)據(jù)
console.log(data);

這些是一些常用的方法,具體的實(shí)現(xiàn)方式可以根據(jù)你使用的編程語(yǔ)言和需求來(lái)選擇。

0