集册 Java实例教程 写入简单文件

写入简单文件

欢马劈雪     最近更新时间:2020-01-02 10:19:05

516
写入一个简单的文件

import java.io.IOException;

import java.nio.file.Files;/*nowjava - 时  代  Java 提 供*/

import java.nio.file.Path;

import java.nio.file.Paths;

import java.nio.file.StandardOpenOption;


public class Main {

  public static void main(String[] args) throws IOException {

    Path newPath = Paths.get("/home/docs/newUsers.txt");

    byte[] newContents = "Christopher".getBytes();


    Files.write(newPath, newContents, 
展开阅读全文