JAVA 中 JSON文件的读取
Posted ISaiSai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA 中 JSON文件的读取相关的知识,希望对你有一定的参考价值。
package com.example.demo.jsonParse;
import com.alibaba.fastjson.JSON;
import org.junit.jupiter.api.Test;
import org.springframework.core.io.ClassPathResource;
import org.springframework.util.FileCopyUtils;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
public class JsonReadTest
@Test
public void parse() throws IOException
ClassPathResource resource = new ClassPathResource("data.json");
byte[] bdata = FileCopyUtils.copyToByteArray(resource.getInputStream());
String data = new String(bdata, StandardCharsets.UTF_8);
System.out.println(data);
TestClass test = JSON.parseObject(data,TestClass.class);
System.out.println(JSON.toJSONString(test));
以上是关于JAVA 中 JSON文件的读取的主要内容,如果未能解决你的问题,请参考以下文章