大家好,欢迎来到IT知识分享网。
package file;
import org.junit.jupiter.api.Test;
import java.io.File;
import java.io.IOException;
/** * @author Yhj * @date 2022/4/29 18:46 * @project IO */
public class FileCreate {
public static void main(String[] args) {
new FileCreate().create01();
new FileCreate().create02();
new FileCreate().create03();
}
//方法一 new File(String pathname)//根据路径构建一个File对象
public void create01(){
String filePath = "e:\\A.txt";
File file = new File(filePath);
try {
file.createNewFile();
System.out.println("文件创建成功");
} catch (IOException e) {
e.printStackTrace();
}
}
//方式2 new File(File parent,String child) //根据父目录文件+子路径构建
@Test
public void create02(){
File parentFile = new File("e:\\");
String fileName = "B.txt";
File file1 = new File(parentFile, fileName);
try {
file1.createNewFile();
System.out.println("文件创建成功");
} catch (IOException e) {
e.printStackTrace();
}
}
//方式3 new File(String parent,String child) //根据父目录和子目录构建
public void create03(){
String parentFile = "E:\\";
String fileName = "C.txt";
File file = new File(parentFile,fileName);
try {
file.createNewFile();
System.out.println("文件创建成功");
} catch (IOException e) {
e.printStackTrace();
}
}
}
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/11227.html