在jdk1.8 fastjson读取json文件
时间: 2023-11-02 18:16:09 浏览: 173
fast-json_文件
的方法是什么?
您好!可以使用以下代码读取json文件:
```
import com.alibaba.fastjson.JSON;
import java.io.*;
public class TestJson {
public static void main(String[] args) throws IOException {
String fileName = "test.json"; // json文件名
File file = new File(fileName);
BufferedReader reader = null;
String jsonStr = "";
reader = new BufferedReader(new FileReader(file));
String tempString = null;
while ((tempString = reader.readLine()) != null) {
jsonStr += tempString;
}
reader.close();
// 解析读取的json字符串
Object obj = JSON.parse(jsonStr);
// 处理业务逻辑
// ...
}
}
```
希望能对您有所帮助!
阅读全文