文件系统(02):基于SpringBoot管理Xml和CSV( 二 )
3、执行效果图
文章插图
三、CSV文件管理1、CSV文件样式
文章插图
这里不需要依赖特定的Jar包 , 按照普通的文件读取即可 。
2、文件读取@Async@Overridepublic void readNotify(String path, Integer columnSize) throws Exception {File file = new File(path) ;String fileName = file.getName() ;int lineNum = 0 ;if (fileName.startsWith("data-")) {InputStreamReader isr = new InputStreamReader(new FileInputStream(file),"GBK") ;BufferedReader reader = new BufferedReader(isr);List
3、文件创建@Async@Overridepublic void createCsv(List dataList,String path) throws Exception {File file = new File(path) ;boolean createFile = false ;if (file.exists()){boolean deleteFile = file.delete() ;LOGGER.info("deleteFile:"+deleteFile);}createFile = file.createNewFile() ;OutputStreamWriter ost = new OutputStreamWriter(new FileOutputStream(path),"UTF-8") ;BufferedWriter out = new BufferedWriter(ost);if (createFile){for (String line:dataList){if (!StringUtils.isEmpty(line)){out.write(line);out.newLine();}}}out.close();}
4、编写测试接口这里基于Swagger2管理接口测试。
@Api("Csv接口管理")@RestControllerpublic class CsvWeb {@Resourceprivate CsvService csvService ;@ApiOperation(value="http://kandian.youth.cn/index/文件读取")@GetMapping("/csv/readNotify")public String readNotify (@RequestParam("path") String path,@RequestParam("column") Integer columnSize) throws Exception {csvService.readNotify(path,columnSize);return "success" ;}@ApiOperation(value="http://kandian.youth.cn/index/创建文件")@GetMapping("/csv/createCsv")public String createCsv (@RequestParam("path") String path) throws Exception {List dataList = new ArrayList<>() ;dataList.add("1,北京,beijing") ;dataList.add("2,上海,shanghai") ;dataList.add("3,苏州,suzhou") ;csvService.createCsv(dataList,path);return "success" ;}}
文中涉及文件类型 , 在该章节源码ware18-file-parent/case-file-type目录下 。
推荐阅读:GitHub源码和分类管理 , 持续更新
文件系统(01):基于SpringBoot管理Excel和PDF
SpringBoot2 整合 Drools规则引擎 , 实现高效的业务规则
SpringBoot2 整合MinIO中间件 , 实现文件便捷管理
SpringBoot2.0 整合 Shiro 框架 , 实现用户权限管理
SpringBoot2 整合 ClickHouse数据库 , 实现高性能数据查询分析
SpringBoot2 整合FreeMarker模板 , 完成页面静态化处理
SpringBoot2 整合JTA组件 , 多数据源事务管理
- 深圳市建筑工程人工智能审图系统上线 AI技术首次赋能设计质量监管
- 无需数据线,手机与电脑也能互传文件,比QQ微信传文件速度快
- Spotify拥有全新设计和更大屏幕的Car Thing出现在FCC文件中
- 小米折叠屏真机曝光 运行MIUI12系统内置256GB内存
- 郭明錤:iPhone或将在2022年开始采用VC散热系统
- 英特尔发布为Mobileye自动驾驶汽车视觉系统开发的两块关键芯片
- 美国如果限制谷歌出口安卓系统,华为小米会怎样?看完长知识了
- magicui4.0更新名单亮点 magicui4.0系统有什么变化
- 手机换个屏,保存的文件却弄丢了,店家:你让我赔十万还不如杀了我
- 性能|电脑操作系统安装,该选择32位还是64位?