问题

在上一案例的基础上,在demo文件夹下创建文件Hello.txt。

步骤

实现此案例需要按照如下步骤进行。

步骤一:构建测试方法

首先,在TestFile类中新建测试方法testCreateNewFile,代码如下所示:

package day05;

import java.io.File;
import java.io.IOException;
import org.junit.Test;

public class TestFile {

    @Test
    public void testCreateNewFile() throws IOException {

    }

}

步骤二:创建文件

首先,使用File类构建表示当前工程下的demo文件夹下的Hello.txt文件的对象file;然后,使用File类的exists方法判断文件是否存在,如果不存在,使用File类的createNewFile方法创建该文件,代码如下所示:

package day05;

import java.io.File;
import java.io.IOException;
import org.junit.Test;

public class TestFile {

    @Test
    public void testCreateNewFile() throws IOException {
        File file = new File("demo" + File.separator + "Hello.txt");
        //若不存在,就创建该文件
        if (!file.exists()) {
            file.createNewFile();
        }
    }

}

步骤三:运行 

运行testCreateNewFile方法,会发现在当前工程的demo文件夹下多了一个文件Hello.txt。