19File类常用方法-获取功能方法
获取的方法:
getAbsolutePath() 返回此File的绝对路径名字符串
getPath() 将此File转换为路径名字符串
getName() 返回次File表示的文件或目录的名称
length()返回次File表示的文件的长度
详细代码:
package demo19File方法;
import java.io.File;
public class DemoFile {
public static void main(String[] args) {
System.out.println();
show01();
System.out.println();
show02();
System.out.println();
show03();
System.out.println();
show04();
}
private static void show04(){
共有 0 条评论