File类的获取功能和修改名字功能
- File getAbsoluteFile():获取文件的绝对路径,返回File对象
- String getAbsolutePath():获取文件的绝对路径,返回路径的字符串
- String getParent():获取当前路径的父级路径,以字符串形式返回该父级路径
- File getParentFile():获取当前路径的父级路径,以字File对象形式返回该父级路径
- String getName():获取文件或文件夹的名称
- String getPath():获取File对象中封装的路径
- long lastModified():以毫秒值返回最后修改时间
- long length():返回文件的字节数
- boolean renameTo(File dest): 将当前File对象所指向的路径 修改为 指定File所指向的路径
package com.itheima_01;
import java.io.File;
import java.io.IOException;
import java.util.Date;
import javax.xml.crypto.Data;
/*
* File:文件和目录路径名的抽象表示形式,File 类的实例是不可变的
*
* 构造方法:
* File(File parent, String child)
* File(String pathname)
* File(String parent, String child)
*
* File的常用功能:
* 获取功能
* File getAbsoluteFile()
* String getAbsolutePath()
* String getName()
* String getParent()
* File getParentFile()
* String getPath()
* long lastModified()
* long length()
* 修改文件名:
* boolean renameTo(File dest)
*
*/
public class FileDemo4 {
public static void main(String[] args) throws IOException {
// method();
// method2();
// method3();
File f = new File("d.txt");
File f2 = new File("e.txt");
//boolean renameTo(File dest) :将当前File对象所指向的路径修改为指定File对象的所指向的路径
//注意:修改的文件路径不能存在,如果存在则修改失败
System.out.println(f.renameTo(f2));//true
}
private static void method3() {
File f = new File("a.txt");
File f2 = new File("d:\\a\\b.txt");//\:代表转意符;\\:代表路径
File f3 = new File("b");
// String getName():获取文件和文件夹的名称
// System.out.println(f.getName());//a.txt
// System.out.println(f2.getName());//b.txt
// System.out.println(f3.getName());//b
// String getPath():返回创建对象时给的路径
// System.out.println(f.getPath());//a.txt
// System.out.println(f2.getPath());//d:\a\b.txt
// System.out.println(f3.getPath());//b
// long lastModified():以毫秒值的形式返回最后修改
// System.out.println(f.lastModified());//1539657311101
// Date d = new Date(1539657311101L);
// System.out.println(d.toLocaleString());//2018-10-16 10:35:11
// // long length():返回文件的字节数
System.out.println(f.length());//8
}
private static void method2() throws IOException {
// File f = new File("a.txt");
// File f2 = new File("b","c.txt");
// System.out.println(f2.createNewFile());//没有创建父路径会出异常Exception in thread
// "main" java.io.IOException: 系统找不到指定的路径。
File parent = new File("b");
File f3 = new File(parent, "c.txt");
// 所以要进行判断父类文件是否存在
if (!parent.exists()) {
parent.mkdirs();
}
System.out.println(f3.createNewFile());
// String getParent()
System.out.println(f3.getParent());
// File getParentFile()
System.out.println(f3.getParentFile());
}
private static void method() {
File f = new File("d:\\a\\b.txt");
File f2 = new File("a.txt");
// File getAbsoluteFile() :以File对象的形式返回当前File对象所有指向的绝对路径
System.out.println(f2.getAbsoluteFile());// E:\czbkJavaStudy\workspace\myFile\a.txt
// String getAbsolutePath() :返回File对象所指向的绝对路径
System.out.println(f2.getAbsolutePath());// E:\czbkJavaStudy\workspace\myFile\a.txt
}
}
网友评论