File类的获取功能

//File类的获取功能
package com.day14io1;

import java.io.File;
import java.io.IOException;

import sun.net.www.content.image.gif;

public class Test5 {

	public static void main(String[] args) throws IOException {
		// TODO Auto-generated method stub
		File f = new File("E:/jee/Test5.txt");
		// getAbsolutePath():返回此抽象路径名的绝对路径名字符串
		System.out.println(f.getAbsolutePath());

		// getAbsoluteFile():返回此抽象路径名的绝对路径名形式。
		System.out.println(f.getAbsoluteFile());

		// getCanonicalFile()返回此抽象路径名的规范形式。
		System.out.println(f.getCanonicalFile());

		// getCanonicalPath()返回此抽象路径名的规范路径名字符串。
		System.out.println(f.getCanonicalPath());

		// getFreeSpace()返回此抽象路径名指定的分区中未分配的字节数。
		System.out.println(f.getFreeSpace());

		// getName()返回由此抽象路径名表示的文件或目录的名称。
		System.out.println(f.getName());

		// getParent()返回此抽象路径名父目录的路径名字符串;如果此路径名没有指定父目录,则返回 null。
		System.out.println(f.getParent());

		// getParentFile()返回此抽象路径名父目录的抽象路径名;如果此路径名没有指定父目录,则返回 null。
		System.out.println(f.getParentFile());

		// getPath()将此抽象路径名转换为一个路径名字符串。
		System.out.println(f.getPath());

		// getTotalSpace()返回此抽象路径名指定的分区大小。
		System.out.println(f.getTotalSpace());

		// getUsableSpace()返回此抽象路径名指定的分区上可用于此虚拟机的字节数。
		System.out.println(f.getUsableSpace());

		// long lastModified()返回此抽象路径名表示的文件最后一次被修改的时间。
		System.out.println(f.lastModified());

		// long length()返回由此抽象路径名表示的文件的长度
		System.out.println(f.length());
	}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值