zno2

文件拷贝工具类

https://docs.spring.io/spring/docs/1.2.x/javadoc-api/org/springframework/util/FileCopyUtils.html

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>4.3.1.RELEASE</version>
        </dependency>

 

用法举例:

    @Test
    public void tt() throws IOException{
        FileCopyUtils.copy(new File("E:\\abc.txt"), new File("E:\\abcd.txt"));
    }

 

posted on 2016-08-06 08:21  zno2  阅读(186)  评论(0编辑  收藏  举报

导航