SpringBoot 读取 resources 下面的文件

修改POM文件

这一步的作用,是为了将文件都打包进去,防止出现在IDE里面可以,但是打成jar包后出现文件找不到的情况

 
        xxx-api
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    true
                
            
        
        
            
                src/main/java
                false
                
                    **/*.*
                
            
            
                src/main/resources
                false
                
                    **/*.*
                
            
        
    

读取文件

假如在 resources 目录下有个 abc.config文件


        ClassPathResource classPathResource = new ClassPathResource("/abc.config");
        InputStream inputStream = classPathResource.getInputStream();
        InputStreamReader inputStreamReader = new InputStreamReader(inputStream, StandardCharsets.UTF_8);

        StringBuilder strBuilder = new StringBuilder();

        char[] chars = new char[1024];
        // 循环读取客户端发送的数据
        while (true) {
            int read = inputStreamReader.read(chars);
            if (read != -1) {
                // 输出客户端发送的数据
                String str = new String(chars, 0, read);
                strBuilder.append(str);
            } else {
                break;
            }
        }

        inputStreamReader.close();
        inputStream.close();

        System.out.println(strBuilder);

你可能感兴趣的:(SpringBoot 读取 resources 下面的文件)