SpringBoot读取Linux服务器某路径下文件读取项目Resource下文件

Posted Rainyn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot读取Linux服务器某路径下文件读取项目Resource下文件相关的知识,希望对你有一定的参考价值。

// SpringBoot读取Linux服务器某路径下文件
public String messageToRouted() { File file = null; try { file = ResourceUtils.getFile("/home/admin/logs/test/routed.txt"); // 获取文件输入流 InputStream inputStream = new FileInputStream(file); List<String> fileList = IOUtils.readLines(inputStream); log.info("fileList:{}", fileList); fileList.forEach(rd -> { RoutedPO routedPO = new RoutedPO(); routedPO.setFulfillmentOrderName(rd.trim()); routedPO.setRoutedTo("test"); // 通知分单结果 routedService.notifyRoutedResult(routedPO, OfcRoutedOperate.INSERT); }); } catch (FileNotFoundException e) { log.info("文件不存在!"); return "文件不存在!"; } catch (IOException e) { log.info("文件读取异常!"); return "文件读取异常!"; } return "success!"; }
// SpringBoot读取Resource下文件
public String messageToRouted(){ try { ClassPathResource classPathResource = new ClassPathResource("routed.txt"); // 判断文件是否存在 boolean exists = classPathResource.exists(); if(!exists){ log.info("文件不存在!"); return "文件不存在!"; } try { // 获取文件输入流 InputStream inputStream = classPathResource.getInputStream(); List<String> fileList = IOUtils.readLines(inputStream); log.info("fileList:{}",fileList); fileList.forEach(rd ->{ RoutedPO routedPO = new RoutedPO(); routedPO.setFulfillmentOrderName(rd.trim()); routedPO.setRoutedTo("test"); // 通知分单结果 routedService.notifyRoutedResult(routedPO, OfcRoutedOperate.INSERT); }); } catch (IOException e) { log.info(e.getMessage()); } } catch (RuntimeException e) { log.info(e.getMessage()); } return "success!"; }

 

以上是关于SpringBoot读取Linux服务器某路径下文件读取项目Resource下文件的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot部署到Linux读取resources下的文件

SpringBoot部署到Linux读取resources下的文件

SpringBoot部署到Linux读取resources下的文件

在外部 tomcat 中定义 Spring Boot 应用程序的上下文路径

Angular2+Spring Boot:无法解决上下文路径问题 |前端没有数据

如何在 Jhipster (spring boot + angular) 应用程序上设置上下文路径