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

IO流(5)判断功能

时间:2018-01-10 22:47:49      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:txt   exist   文件   div   exists   对象   hid   read   post   

判断功能:
* public boolean isDirectory():判断是否是目录
* public boolean isFile():判断是否是文件
* public boolean exists():判断是否存在
* public boolean canRead():判断是否可读
* public boolean canWrite():判断是否可写
* public boolean isHidden():判断是否隐藏
*/
public class FileDemo {
  public static void main(String[] args) {
    // 创建文件对象
    File file = new File("a.txt");

    System.out.println("isDirectory:" + file.isDirectory());// false
    System.out.println("isFile:" + file.isFile());// true
    System.out.println("exists:" + file.exists());// true
    System.out.println("canRead:" + file.canRead());// true
    System.out.println("canWrite:" + file.canWrite());// true
    System.out.println("isHidden:" + file.isHidden());// false
  }
}

IO流(5)判断功能

标签:txt   exist   文件   div   exists   对象   hid   read   post   

原文地址:https://www.cnblogs.com/qinjf/p/8260955.html

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