码迷,mamicode.com
首页 > 其他好文 > 详细

File类 获取文件属性

时间:2018-02-19 21:48:26      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:文件属性   methods   str   获取   rgs   字节   div   []   new   

package Chapter8.ShiLi.Demo1;

import java.io.File;

public class FileMethods {

  public static void main(String[] args) {
    FileMethods fm = new FileMethods();
      File file = new File("D:\\text.txt");
      fm.showFileInfo(file);

}

public void showFileInfo(File file) {
  if (file.exists()) { // 判断文件或目录是否存在
  if (file.isFile()) { // 如果是文件
    System.out.println("名称:" + file.getName());
    System.out.println("相对路径:" + file.getPath());
    System.out.println("绝对路径:" + file.getAbsolutePath());
    System.out.println("文件大小:" + file.length() + "字节");
  }
  if (file.isDirectory()) {
    System.out.println("此文件是目录。");
  }


  } else {
    System.out.println("文件不存在");
  }

 }
}

File类 获取文件属性

标签:文件属性   methods   str   获取   rgs   字节   div   []   new   

原文地址:https://www.cnblogs.com/chongsheng456-com/p/8454423.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!