NIO中的File
阅读原文时间:2023年07月09日阅读:2
package nio;

import java.io.IOException;
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;

/**
 * 以下基于JDK7 NIO提高了IO流的操作效率,但是现在使用的范围还不大。
 *
 * 从1.4出现了Buffer and Channer
 *
 * @author 半步疯子 java.nio.*; Path: Paths: Files:
 */
public class NIODemo {
    public static void main(String[] args) throws IOException {
        // Files.copy(Paths.get("Copy.java"), new FileOutputStream("NIOCopy.java"));
        ArrayList<String> array = new ArrayList<String>();
        array.add("hello");
        array.add("world");
        array.add("java");
        Files.write(Paths.get("array.txt"), array, Charset.forName("GBK")/*, options*/);

    }
}

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章