美文网首页
Spring Boot 读取静态文件

Spring Boot 读取静态文件

作者: Jetlag时 | 来源:发表于2018-09-03 16:19 被阅读72次
         try {
                Resource resource = new ClassPathResource("area-code/relayNumber.json");
                reader = new BufferedReader(new InputStreamReader(resource.getInputStream()));
                //每次读取文件的缓存
                String temp = null;
                while ((temp = reader.readLine()) != null) {
                    data.append(temp);
                }
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
                //关闭文件流
                if (reader != null) {
                    try {
                        reader.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
            String str = data.toString();

    相关文章

      网友评论

          本文标题:Spring Boot 读取静态文件

          本文链接:https://www.haomeiwen.com/subject/geqiwftx.html