Java 输入/输出——File类
File类是java.io包下代表与平台无关的文件和目录,也就是说,如果希望在程序中操作文件和目录,都可以通过File类来完成。值得指出的是,不管是文件还是目录都是使用File来操作的,File能新建、删除、重命名文件和目录,File不能访问文件内容本身。如果需要访问文件内容本身,则需要使用输入/输出流。
File类相关的方法参考链接:https://docs.oracle.com/javase/9/docs/api/overview-summary.html
Field Summary
Fields Modifier and Type Field Description static StringpathSeparatorThe system-dependent path-separator character, represented as a string for convenience.static charpathSeparatorCharThe system-dependent path-separator character.static StringseparatorThe system-dependent default name-separator character, represented as a string for convenience.static charseparatorCharThe system-dependent default name-separator character.
Constructor Summary
Constructors Constructor Description File(File parent, String child)Creates a newFileinstance from a parent abstract pathname and a child pathname string.File(String pathname)Creates a newFileinstance by converting the given pathname string into an abstract pathname.File(String parent, String child)Creates a newFileinstance from a parent pathname string and a child pathname string.File(URI uri)Creates a newFileinstance by converting the givenfile:URI into an abstract pathname.
Method Summary
All MethodsStatic MethodsInstance MethodsConcrete MethodsDeprecated Methods Modifier and Type Method Description booleancanExecute()Tests whether the application can execute the file denoted by this abstract pathname.booleancanRead()Tests whether the application can read the file denoted by this abstract pathname.booleancanWrite()Tests whether the application can modify the file denoted by this abstract pathname.intcompareTo(File pathname)Compares two abstract pathnames lexicographically.booleancreateNewFile()Atomically creates a new, empty file named by this abstract pathname if and only if a file with this name does not yet exist.static FilecreateTempFile(String prefix,String suffix)Creates an empty file in the default temporary-file directory, using the given prefix and suffix to generate its name.static FilecreateTempFile(String prefix,String suffix,File directory)Creates a new empty file in the specified directory, using the given prefix and suffix strings to generate its name.booleandelete()Deletes the file or directory denoted by this abstract pathname.voiddeleteOnExit()Requests that the file or directory denoted by this abstract pathname be deleted when the virtual machine terminates.booleanequals(Object obj)Tests this abstract pathname for equality with the given object.booleanexists()Tests whether the file or directory denoted by this abstract pathname exists.FilegetAbsoluteFile()Returns the absolute form of this abstract pathname.StringgetAbsolutePath()Returns the absolute pathname string of this abstract pathname.FilegetCanonicalFile()Returns the canonical form of this abstract pathname.StringgetCanonicalPath()Returns the canonical pathname string of this abstract pathname.longgetFreeSpace()Returns the number of unallocated bytes in the partition named by this abstract path name.StringgetName()Returns the name of the file or directory denoted by this abstract pathname.StringgetParent()Returns the pathname string of this abstract pathname's parent, ornullif this pathname does not name a parent directory.FilegetParentFile()Returns the abstract pathname of this abstract pathname's parent, ornullif this pathname does not name a parent directory.StringgetPath()Converts this abstract pathname into a pathname string.longgetTotalSpace()Returns the size of the partition named by this abstract pathname.longgetUsableSpace()Returns the number of bytes available to this virtual machine on the partition named by this abstract pathname.inthashCode()Computes a hash code for this abstract pathname.booleanisAbsolute()Tests whether this abstract pathname is absolute.booleanisDirectory()Tests whether the file denoted by this abstract pathname is a directory.booleanisFile()Tests whether the file denoted by this abstract pathname is a normal file.booleanisHidden()Tests whether the file named by this abstract pathname is a hidden file.longlastModified()Returns the time that the file denoted by this abstract pathname was last modified.longlength()Returns the length of the file denoted by this abstract pathname.String[]list()Returns an array of strings naming the files and directories in the directory denoted by this abstract pathname.String[]list(FilenameFilter filter)Returns an array of strings naming the files and directories in the directory denoted by this abstract pathname that satisfy the specified filter.File[]listFiles()Returns an array of abstract pathnames denoting the files in the directory denoted by this abstract pathname.File[]listFiles(FileFilter filter)Returns an array of abstract pathnames denoting the files and directories in the directory denoted by this abstract pathname that satisfy the specified filter.File[]listFiles(FilenameFilter filter)Returns an array of abstract pathnames denoting the files and directories in the directory denoted by this abstract pathname that satisfy the specified filter.static File[]listRoots()List the available filesystem roots.booleanmkdir()Creates the directory named by this abstract pathname.booleanmkdirs()Creates the directory named by this abstract pathname, including any necessary but nonexistent parent directories.booleanrenameTo(File dest)Renames the file denoted by this abstract pathname.booleansetExecutable(boolean executable)A convenience method to set the owner's execute permission for this abstract pathname.booleansetExecutable(boolean executable, boolean ownerOnly)Sets the owner's or everybody's execute permission for this abstract pathname.booleansetLastModified(long time)Sets the last-modified time of the file or directory named by this abstract pathname.booleansetReadable(boolean readable)A convenience method to set the owner's read permission for this abstract pathname.booleansetReadable(boolean readable, boolean ownerOnly)Sets the owner's or everybody's read permission for this abstract pathname.booleansetReadOnly()Marks the file or directory named by this abstract pathname so that only read operations are allowed.booleansetWritable(boolean writable)A convenience method to set the owner's write permission for this abstract pathname.booleansetWritable(boolean writable, boolean ownerOnly)Sets the owner's or everybody's write permission for this abstract pathname.PathtoPath()Returns ajava.nio.file.Pathobject constructed from the this abstract path.StringtoString()Returns the pathname string of this abstract pathname.URItoURI()Constructs afile:URI that represents this abstract pathname.URLtoURL()
1、访问文件和目录
package com.zyjhandsome.io;
import java.io.*;
public class FileTest {
public static void main(String[] args) throws IOException
{
// 以当前路径来创建一个File对象
File file = new File(".");
// 直接获取文件名, 输出一点
System.out.println(file.getName());
// 获取相对路径的父路径可能出错, 下面代码输出null
System.out.println(file.getParent());
// 获取绝对路径
System.out.println(file.getAbsoluteFile());
// 获取绝对路径
System.out.println(file.getAbsoluteFile().getParent());
// 当前路径下创建一个临时文件
File tmpFile = File.createTempFile("aaa", ".txt", file);
// 指定当JVM退出时候删除该文件
tmpFile.deleteOnExit();
// 以系统当前时间作为新文件名来创建新文件
File newFile = new File(System.currentTimeMillis() + "");
System.out.println("newFile对象是否存在1: " + newFile.exists());
// 以指定newFile对象来创建一个文件
newFile.createNewFile();
System.out.println("newFile对象是否存在2: " + newFile.exists());
// 以newFile对象来创建一个目录,因为newFile已经存在,所以下面方法返回false, 即无法创建该目录
System.out.println("newFile.mkdir():" + newFile.mkdir());
System.out.println("----------------------");
// 使用list()方法列出当前路径下的所有文件和路径
String[] fileList = file.list();
for (String fileName : fileList)
{
System.out.println(fileName);
}
System.out.println("----------------------");
// listRoots()静态方法列出所有的磁盘根路径
File[] roots = File.listRoots();
System.out.println("====系统所有根路径如下====");
for (File root : roots)
{
System.out.println(root);
}
}
}
.
null
D:\zhaoyingjun\eclipse-workspace\CollectionTest\.
D:\zhaoyingjun\eclipse-workspace\CollectionTest
newFile对象是否存在1: false
newFile对象是否存在2: true
newFile.mkdir():false
----------------------
.classpath
.project
.settings
1537712414564
1537712424492
1537712893895
1537712926829
1537712940906
1537713158525
1537713167968
1537774060515
aaa1610208071466755969.txt
bin
src
----------------------
====系统所有根路径如下====
C:\
D:\
2、文件过滤器
在File类的list()方法中可以接收一个FilenameFilter参数,通过该参数可以只列出符合条件的文件。这里的FilenameFilter接口和javax.swing.filechooser包下的FileFilter抽象类的功能非常相似,可以把FileFilter当成是FilenameFilter的实现类。
FilenameFilter接口里包含了一个accept(File dir, String name)方法,该方法将依次对指定File的所有子目录或者文件进行迭代,如果该方法返回true,则list()方法会列出该子目录或者文件。
package com.zyjhandsome.io;
import java.io.*;
public class FilenameFilterTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
File file = new File(".");
// 使用Lambda表达式(目标类型是FilenameFilter)实现文件过滤器
// 如果文件名以.java结尾, 或者文件对应一个路径,则返回true
String[] nameList = file.list((dir, name) ->
name.endsWith(".java") || new File(name).isDirectory());
for (String name : nameList)
{
System.out.println(name);
}
}
}
.settings
bin
src
Java 输入/输出——File类的更多相关文章
- 第15章-输入/输出 --- File类
(一) Java的IO通过java.io包下的类和接口来支持,在java.io包下主要包括输入.输出两种IO流. 每种输入.输出流又分为字节流和字符流两大类: (1)字节流以字节为单位来处理输入.输出 ...
- I/O(输入/输出)---File类
File:表示文件与目录.用它来对文件或目录进行基本操作,它可以查出文件的基本相关信息,比如:名称.最后的修改日期.文件大小. 使用File类操作文件和目录属性步骤: 1.引入File类 import ...
- Java 输入/输出 反射
Java 输入/输出 反射 输入输出和反射 一.数据流的基本概念 流一般分为 ( Input Stream ) 和输出流 ( Output Stream ) 两类,但这种划分并不是绝对的.比如一 ...
- Java学习:File类
Java学习:File类 File类的概述 重点:记住这三个单词 绝对路径和相对路径 File类的构造方法 File类判断功能的方法 File类创建删除功能的方法 File类获取(文件夹)目录和文件夹 ...
- java中的File类
File类 java中的File类其实和文件并没有多大关系,它更像一个对文件路径描述的类.它即可以代表某个路径下的特定文件,也可以用来表示该路径的下的所有文件,所以我们不要被它的表象所迷惑.对文件的真 ...
- Java输入/输出教程
Java输入/输出(I/O)处理从源读取数据并将数据写入目标.通常,读取存储在文件中的数据或使用I/O将数据写入到文件中. java.io和java.nio包中包含处理输入/输出的Java类.java ...
- java学习一目了然——File类文件处理
java学习一目了然--File类文件处理 File类(java.io.File) 构造函数: File(String path) File(String parent,String child) F ...
- Java学习笔记——File类之文件管理和读写操作、下载图片
Java学习笔记——File类之文件管理和读写操作.下载图片 File类的总结: 1.文件和文件夹的创建 2.文件的读取 3.文件的写入 4.文件的复制(字符流.字节流.处理流) 5.以图片地址下载图 ...
- Java基础之File类的使用
Java基础之File类的使用 1.File类的构造方法和常用方法 2.对File中listFile(FileNameFilter name)学习 3.与File文件类相关的实现 File类的构造方法 ...
随机推荐
- Socket网络编程--聊天程序(5)
上一小节我们讲了使用select来避免使用多进程的资源浪费问题.上次只是实现了从多个客户端发送数据给服务器端,接下来就要实现从服务器端发送数据给各个客户端. 使用select多路转换处理聊天程序2 c ...
- 微信小程序--兼容
小程序的功能不断的增加,但是旧版本的微信客户端并不支持新功能,所以在使用这些新能力的时候需要做兼容. 文档会在组件,API等页面描述中带上各个功能所支持的版本号. 可以通过 wx.getSystemI ...
- 【Netty】通俗地讲,Netty 能做什么?
作者:郭无心链接:https://www.zhihu.com/question/24322387/answer/78947405来源:知乎著作权归作者所有.商业转载请联系作者获得授权,非商业转载请注明 ...
- Android下查看共享库依赖项
Android下查看共享库依赖项 [时间:2017-02] [状态:Open] [关键词:android,共享库依赖项,so,ndk,objdump,readelf] 起因 近期在处理Android下 ...
- oracle 回收表空间的数据文件大小
查看表空间的使用情况: " "used MB",b.bytes "free MB", ,) "percent_used" from ...
- [转]PowerDesigner大小写转换
原文地址:https://blog.csdn.net/fzqlife/article/details/72769959?utm_source=blogxgwz7 在菜单栏找到:Tools-->E ...
- Java编程的逻辑 (85) - 注解
本系列文章经补充和完善,已修订整理成书<Java编程的逻辑>,由机械工业出版社华章分社出版,于2018年1月上市热销,读者好评如潮!各大网店和书店有售,欢迎购买,京东自营链接:http: ...
- Ubuntu 中的VI和vim
转载出处:http://blog.csdn.net/xiajun07061225/article/details/7039413 或功能键[Home]:移动到这一行的最前面字符处. $或功能键[End ...
- mybatise插件反向生成数据库表相关Java代码
1.下载相关jar包https://github.com/mybatis/generator/releases 2.配置xml文件 <?xml version="1.0" e ...
- [OpenCV] Samples 18: Load image and check its attributes
本篇内容: * 图片读取 * 图片高宽 * 图片ROI * 图片缩放 Ref: http://blog.csdn.net/u012005313/article/details/51943442 官网2 ...