spring boot 新建文件路径,写入文件内容

简介: spring boot 新建文件路径,写入文件内容

创建文件路径,写入文件内容,如果当前路径已存在,则替换掉之前文件内容


/**
     * 创建文件路径,写入文件内容
     * dongxinji
     * 2022年9月28日
     *
     * @throws IOException
     */
    private String checkAndCreate(String date) throws IOException {
        log.info(" 创建文件路径,写入文件内容*******" + date);
        String shell = shellInfo(date);
        File file = new File(path + date + fileName);
        if (!file.exists()) {
            String[] strings = {};
            try {
                createShell(path + date + fileName, strings);//生成文件路径
//                writeToFile(file, shellInfo(date));//对应文件写入内容
                writeToFile(file, shell);//对应文件写入内容
            } catch (Exception e) {
                log.error("shell--------------------Exception" + e.getMessage());
                e.printStackTrace();
            }
        } else {
            log.error("shell--------------------File exist");
            writeToFile(file, shell);//写入文件内容
        }
        return date + fileName;
    }
    /**
     * 写入文件
     *
     * @param shell
     * @throws IOException
     */
    public void writeToFile(File f1, String shell) throws IOException {
        OutputStream out = null;
        BufferedWriter bw = null;
        if (f1.exists()) {
            out = new FileOutputStream(f1);
            bw = new BufferedWriter(new OutputStreamWriter(out, "utf-8"));
            bw.write(shell);
            log.info("写入文件内容******" + shell);
            bw.flush();
            bw.close();
            log.info("shell--------------------" + f1 + "文件创建成功");
        } else {
            log.error("shell--------------------文件不存在");
        }
    }


相关文章
|
4月前
|
Java Spring
idea新建spring boot 项目右键无package及java类的选项
idea新建spring boot 项目右键无package及java类的选项
197 5
|
6月前
|
Java Spring
SpringBoot:第一篇 新建spring boot 应用
SpringBoot:第一篇 新建spring boot 应用
46 0
|
Java Spring
IDEA更改工作空间及新建SpringBoot项目
IDEA更改工作空间及新建SpringBoot项目
IDEA更改工作空间及新建SpringBoot项目
|
Java 应用服务中间件 Maven
在idea中新建完springboot项目的时候遇到问题(右键没有class选择;控制台报错:Could not transfer artifact org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.60 from/to central ....)
在idea中新建完springboot项目的时候遇到问题(右键没有class选择;控制台报错:Could not transfer artifact org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.60 from/to central ....)
976 0
在idea中新建完springboot项目的时候遇到问题(右键没有class选择;控制台报错:Could not transfer artifact org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.60 from/to central ....)
|
Java Maven Windows
idea下新建的spring boot项目,无法导入依赖以及idea基础回顾
最近在idea中导入spring boot项目的依赖时,无论怎么也无法导入依赖
1849 0
idea下新建的spring boot项目,无法导入依赖以及idea基础回顾
|
存储 Java Spring
使用IntelliJ Idea新建SpringBoot项目
简单给大家介绍一下我来创建SpringBoot项目使用的工具,本人使用IntelliJ Idea来创建项目,利用其中的Spring Initializr工具来快速创建项目。
3028 0
|
Java Spring API
Spring配置文件详解 - applicationContext.xml文件路径
Spring配置文件详解 - applicationContext.xml文件路径 Java编程 超过1579次围观 spring的配置文件applicationContext.xml的默认地址在WEB-INF下,只要在web.xml中加入代码  org.springframework.web.context.ContextLoaderListener spring就会被自动加载 但在实际的开发过程中,我们可能需要调整applicationContext.xml的位置,以使程序结构更加的清晰。
2684 0
|
22天前
|
JavaScript 安全 Java
如何使用 Spring Boot 和 Ant Design Pro Vue 实现动态路由和菜单功能,快速搭建前后端分离的应用框架
本文介绍了如何使用 Spring Boot 和 Ant Design Pro Vue 实现动态路由和菜单功能,快速搭建前后端分离的应用框架。首先,确保开发环境已安装必要的工具,然后创建并配置 Spring Boot 项目,包括添加依赖和配置 Spring Security。接着,创建后端 API 和前端项目,配置动态路由和菜单。最后,运行项目并分享实践心得,包括版本兼容性、安全性、性能调优等方面。
113 1