您的位置:首页 > 其它

File类的构造方法介绍

2020-01-15 11:55 225 查看

File类的构造方法介绍

package com.file;

import java.io.File;

import org.junit.Test;

/*
* File类的构造方法介绍
* 文件路径分类:
* 1)相对路径:相对某个特定位置而言
* 2)绝对路径:带有盘符c:\(Windows操作系统)或/(Linux操作系统)的路径
* E:\帮助文档\jdk\JDK_1_8_CN.chm
* 1. File(String pathname)
* 2. File(String parent, String child)
* 3. File(File parent, String child)
*/
public class FileTest1 {
// File(File parent, String child)
@Test
public void test3() {
File file = new File(new File("d:\\"), "xxx.txt");
System.out.println(file);
}

// File(String parent, String child)
@Test
public void test2() {
File file = new File("d:\\", "xxx.txt");
System.out.println(file);
}

// File(String pathname)
@Test
public void test1() {
File file = new File("xxx.txt"); // 相对路径
file = new File("d:\\xxx.txt"); // 绝对路径
System.out.println(file);
}
}
  • 点赞
  • 收藏
  • 分享
  • 文章举报
一梦如意 发布了92 篇原创文章 · 获赞 1 · 访问量 1048 私信 关注
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐