import java.io.File;
public class FileDemo_3 {
public static void main(String[] args) {
// TODO Auto-generated method stub
function_3();
}
/*
* File类的获取功能
* String getPartent() String 类型的
* File getParent() File类型的
* */
public static void function_3(){
File file = new File("E:\\office\\MEDIA");
File f =file.getParentFile();
System.out.println(f);
}
/*
* File 类的获取功能
* String getAbsolutePath() 返回的是String类型
* File getAbsoluteFile() 返回的是File类型
* */
public static void function_2(){
File file = new File("e:\\io");
// String s = file.getAbsolutePath();
// System.out.println(s);
File f = file.getAbsoluteFile();
System.out.println(f);
}
/*
* File类的获取功能
* long length()
* 返回路径中表示的文件字节数
* */
public static void function_1(){
File file = new File("e:\\HBuilder\\HBuilder.9.0.8.windows.zip");
long length = file.length();
System.out.println(length);
}
/*
* File 类中获取功能 ,
* String getName()
* 返回路径中表示的文件或者文件名
* 获取路径的最后部分的名字
*/
public static void function() {
File file = new File("E:\\Hbuilder");
String s = file.getName();
System.out.println(s);
// String path = file.getPath();
// System.out.println(path);
}
}