标签:dex test java input file 读取配置 stream 避免 temp
打包成war包后,配置文件在war包中,不是一个独立的文件了,无法通过File的方式访问
String filePath = "classpath:template_xml/readexcel/test.xml"; File file = ResourceUtils.getFile(filePath); InputStream fis = new FileInputStream(file);
通过文件流的形式读取文件
String filePath = "template_xml/readexcel/test.xml"; InputStream fis = this.getClass().getResourceAsStream(filePath);
开发过程中遇到读取文件的,尽量用文件流的形式读取文件,可避免在不同环境下可以正确读取
标签:dex test java input file 读取配置 stream 避免 temp
原文地址:https://www.cnblogs.com/niaobulashi/p/war-source.html