编程开发 > JSP > 文章内容

jsp复习资料(14)

2017-1-20编辑:ljnbset

File类概述及文件读写

    File类直接处理文件和文件系统,File对象用来获取或处理与磁盘文件相关的信息,如权限、时间、日期目录路径,以及目录树结构,其构造函数为:
    File(String directoryPath);
    File(String directoryPath, String filename);
    File(File dirObj, String filename);

    其中,directoryPath为文件路径名,filename为文件名,dirObj为指定目录的File对象,文件类对象的方法有:
    .getName()
    .getParent()
    .exists()
    .isFile()
    .isDirectory()
    .canRead()
    .canWrite()
    .length()
    .lastModified()

jsp复习资料(10)

热点推荐

登录注册
触屏版电脑版网站地图