Alternative to java.nio.file.Files in Java 6

前端 未结 5 1871
北荒
北荒 2021-01-18 17:33

I have the following piece of code that uses the java 7 features like java.nio.file.Files and java.nio.file.Paths

import java.io.File;
impor         


        
5条回答
  •  我在风中等你
    2021-01-18 18:05

    Alternative are classes from java.io or Apache Commons IO, also Guava IO can help.

    Guava is most modern, so I think it is the best solution for you.

    Read more: Guava's I/O package utilities, explained.

提交回复
热议问题