<dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.8.0</version> </dependency>
import org.springframework.beans.factory.annotation.Value; import org.springframework.core.io.Resource; @Value("classpath:test.json") Resource resource; List<String> stringList = IOUtils.readLines(resource.getInputStream()); System.out.println(stringList);
原文:https://www.cnblogs.com/chenyanbin/p/14002588.html