springboot 读取 resource 下的文件

ClassPathResource classPathResource = new ClassPathResource("template/demo/200000168-check-response.xml");
            InputStream inputStream = classPathResource.getInputStream();
            responseXml = new String(FilesUtil.read(inputStream), Cons.GBK);
原文地址:https://www.cnblogs.com/xiluhua/p/12080047.html