File 클래스는 java.io 패키지 아래의 플랫폼 독립적인 파일과 디렉터리를 나타냅니다. 파일은 파일과 디렉터리를 생성하고 삭제하고 이름을 바꿀 수 있지만 파일 콘텐츠 자체에 액세스할 수는 없습니다. 콘텐츠에 액세스해야 하는 경우 입력/출력 스트림을 통해 액세스해야 합니다.
File 클래스는 파일 경로 문자열을 사용하여 File 인스턴스를 생성할 수 있습니다. 경로는 절대 경로 또는 상대 경로일 수 있습니다. 일반적으로 상대 경로는 Java VM이 있는 경로인 user.dir 시스템 속성에 의해 지정됩니다.
/** * Creates a new <code>File</code> instance by converting the given * pathname string into an abstract pathname. If the given string is * the empty string, then the result is the empty abstract pathname. * * @param pathname A pathname string * @throws NullPointerException * If the <code>pathname</code> argument is <code>null</code> */ public File(String pathname) { if (pathname == null) { throw new NullPointerException(); } this.path = fs.normalize(pathname); this.prefixLength = fs.prefixLength(this.path); }
public String getName(): File 객체 잠금으로 표시되는 파일 이름 또는 디렉터리 이름을 반환합니다(디렉토리인 경우 마지막 수준 하위 디렉터리가 반환됩니다).
public String getParent(): 이 File 객체에 해당하는 경로 이름을 반환하고 String 유형을 반환합니다.
public File getParentFile(): 이 File 객체의 상위 디렉터리를 반환하고 File 유형을 반환합니다.
public String getPath(): 이 File 객체에 해당하는 경로 이름을 반환하고 String 유형을 반환합니다.
public boolean isAbsolute(): File 객체에 해당하는 파일이나 디렉터리가 절대 경로인지 확인합니다.
public String getAbsolutePath(): 이 File 객체에 해당하는 절대 경로를 반환하고 String 유형을 반환합니다.
public String getCanonicalPath()는 IOException을 발생시킵니다:
public File getCanonicalFile()은 IOException을 발생시킵니다:
public File getAbsoluteFile(): 이 File 객체에 해당하는 절대 경로를 반환하고 File 유형을 반환합니다.
public boolean canRead(): 이 File 객체에 해당하는 파일이나 디렉터리를 읽을 수 있는지 확인합니다.
public boolean canWrite(): 이 File 객체에 해당하는 파일이나 디렉터리가 쓰기 가능한지 여부를 결정합니다.
public boolean canExecute(): 이 File 객체에 해당하는 파일이나 디렉터리가 실행 가능한지 여부를 결정합니다.
public boolean presents(): 이 File 객체에 해당하는 파일이나 디렉터리가 존재하는지 확인합니다.
public boolean isDirectory(): 이 File 개체가 디렉터리인지 확인합니다.
public boolean isFile(): 이 File 객체가 파일인지 확인합니다.
public boolean isHidden(): 이 파일 객체가 숨겨져 있는지 확인합니다.
public long lastModified(): File 객체의 마지막 수정된 타임스탬프를 반환합니다. SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")를 통해 시간 및 날짜 표시 형식을 지정할 수 있습니다. ;
public boolean setLastModified(long time): 파일 객체의 마지막 수정 타임스탬프를 설정합니다.
public long length(): File 객체의 파일 콘텐츠 길이를 반환합니다.
public boolean createNewFile()은 IOException을 발생시킵니다. 이 File 객체에 해당하는 파일이 없으면 이 메서드는 File 객체에 지정된 새 파일을 생성하고 그렇지 않으면 true를 반환합니다. false를 반환합니다.
public boolean delete(): File 객체에 해당하는 파일이나 디렉터리를 삭제합니다. 삭제에 성공하면 true를 반환하고, 그렇지 않으면 false를 반환합니다.
public void deleteOnExit(): 가상 머신이 종료될 때 이 추상 경로명이 나타내는 파일이나 디렉터리가 삭제되도록 요청합니다. 이는 delete()와 달리 VM이 종료될 때 파일이나 디렉터리가 삭제된다는 의미입니다. 호출 시 삭제합니다. 일반적으로 임시 파일에 적합합니다.
public String[] list(): File 객체의 모든 하위 파일 이름과 경로 이름을 나열하고 문자열 배열을 반환합니다.
public File[] listFiles(): File 객체의 모든 하위 파일과 경로 이름을 나열하고 File 배열을 반환합니다.
public boolean mkdir(): 디렉토리를 생성하고 기존 상위 클래스 아래에만 하위 클래스를 생성할 수 있습니다. 상위 클래스가 존재하지 않으면 하위 클래스를 생성할 수 없습니다.
public boolean mkdirs(): 또한 디렉터리를 생성하고 상위 폴더가 존재하지 않는 경우 하위 폴더를 생성할 수 있습니다. 그런데 상위 폴더도 재귀적으로 생성됩니다.
public boolean renameTo(File dest): 이름 바꾸기에 성공하면 true를 반환하고, 그렇지 않으면 false를 반환합니다.
public boolean setReadOnly(): 이 파일 객체를 읽기 전용 권한으로 설정합니다.
public boolean setWritable(boolean writable, boolean ownerOnly): 쓰기 권한 설정입니다. writable이 true이면 쓰기 액세스가 허용되고, false이면 쓰기 액세스가 허용되지 않습니다. ownerOnly true인 경우 쓰기 액세스는 소유자에게만 적용되고 그렇지 않으면 모든 사람에게 적용됩니다.
public boolean setWritable(boolean writable): 기본 구현은 다음과 같습니다. setWritable(writable, true)을 통해 구현되며 기본값은 파일 또는 디렉터리 소유자에게만 적용됩니다.
public boolean setWritable(boolean writable) { return setWritable(writable, true); }
public boolean setReadable(boolean readable, boolean ownerOnly): 읽기 권한 설정입니다. reader가 true이면 읽기 액세스 권한을 허용하고, false이면 읽기 액세스 권한을 허용하지 않습니다. ownerOnly true인 경우 읽기 액세스는 소유자에게만 적용되고, 그렇지 않으면 모든 사람에게 적용됩니다.
public boolean setReadable(boolean readable): 底层实现是:通过setReadable(readable, true)实现,默认是仅适用于文件或目录所有者。
public boolean setReadable(boolean readable) { return setReadable(readable, true); }
public boolean setExecutable(boolean executable, boolean ownerOnly):执行权限设置,executable如果为true,允许执行访问权限;如果为false,执行访问权限是不允许的。ownerOnly如果为true,则执行访问权限仅适用于所有者;否则它适用于所有人。
public boolean setExecutable(boolean executable): 底层实现是:通过setExecutable(executable, true)实现,默认是仅适用于文件或目录所有者。
public boolean setExecutable(boolean executable) { return setExecutable(executable, true); }
public static File[] listRoots():列出系统所有的根路径,可以直接通过File类进行调用。
public long getTotalSpace():返回总空间大小,默认单位为字节。
public long getFreeSpace():Returns the number of unallocated bytes in the partition,返回未被分配空间大小,默认单位为字节。
public long getUsableSpace():Returns the number of bytes available to this virtual machine on the partition,返回可用空间大小,默认单位为字节。
public Path toPath():返回该File对象的Path对象。
public static File createTempFile(String prefix, String suffix) throws IOException:在默认存放临时文件目录中,创建一个临时空文件。可以直接使用File类来调用,使用给定前缀、系统生成的随机数以及给定后缀作为文件名。prefix至少3字节长。如果suffix设置为null,则默认后缀为.tmp。
public static File createTempFile(String prefix, String suffix, File directory):在指定的临时文件目录directort中,创建一个临时空文件。可以直接使用File类来调用,使用给定前缀、系统生成的随机数以及给定后缀作为文件名。prefix至少3字节长。如果suffix设置为null,则默认后缀为.tmp。
1)运行主类
package com.example.andya.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import java.io.File; import java.io.IOException; import java.net.URI; import java.nio.file.Path; import java.text.SimpleDateFormat; @SpringBootApplication public class DemoApplication { public static void main(String[] args) throws IOException { File file = new File("C:\\Users\\LIAOJIANYA\\Desktop\\filetest\\filedir02\\FileTest.txt"); System.out.println("getName(): " + file.getName()); System.out.println("getParent(): " + file.getParent()); System.out.println("getParentFile(): " + file.getParentFile()); System.out.println("getAbsolutePath(): " + file.getAbsolutePath()); System.out.println("getAbsoluteFile(): " + file.getAbsoluteFile()); System.out.println("getAbsoluteFile().getParent(): " + file.getAbsoluteFile().getParent()); System.out.println("getPath(): " + file.getPath()); System.out.println("isAbsolute(): " + file.isAbsolute()); System.out.println("getCanonicalPath(): " + file.getCanonicalPath()); System.out.println("getCanonicalFile(): " + file.getCanonicalFile()); System.out.println("canRead(): " + file.canRead()); System.out.println("canWrite(): " + file.canWrite()); System.out.println("canExecute(): " + file.canExecute()); System.out.println("exists(): " + file.exists()); System.out.println("isDirectory(): " + file.isDirectory()); System.out.println("isFile(): " + file.isFile()); System.out.println("isHidden(): " + file.isHidden()); System.out.println(file.setLastModified(1546275661)); SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); System.out.println("lastModified(): " + simpleDateFormat.format(file.lastModified())); //在里面写了"123"这三个数字 System.out.println("length(): " + file.length()); File newFile01 = new File("C:\\Users\\LIAOJIANYA\\Desktop\\filetest\\filedir02\\FileTest1.txt"); newFile01.createNewFile(); newFile01.delete(); File newDir1 = new File("C:\\Users\\LIAOJIANYA\\Desktop\\filetest\\filedir02\\dir1"); System.out.println("mkdir(): " + newDir1.mkdir()); File newDir2 = new File("C:\\Users\\LIAOJIANYA\\Desktop\\filetest\\filedir02\\dir2\\dir2-1"); System.out.println("mkdirs(): " + newDir2.mkdirs()); String[] fileList = file.getParentFile().list(); System.out.println("========上一级目录下的所有文件和路径========="); for (String fileName : fileList) { System.out.println(fileName); } System.out.println("file重命名:" + file.renameTo(new File("C:\\Users\\LIAOJIANYA\\Desktop\\filetest\\filedir02\\FileTest.txt"))); System.out.println("========上一级目录下的所有文件和目录========="); File[] files = file.getParentFile().listFiles(); for (File fileName : files) { System.out.println(fileName.getName()); } System.out.println("canRead(): " + file.canRead()); //人为改为不可写 System.out.println("setWritable(): " + file.setWritable(false, false)); System.out.println("canWrite(): " + file.canWrite()); System.out.println("canExecute(): " + file.canExecute()); System.out.println("========相对路径========="); //默认相对路径是user.dir即为当前工程所在位置 System.out.println("user.dir:" + System.getProperty("user.dir")); File newFile = new File("test.txt"); System.out.println("newFile文件是否存在:" + newFile.exists()); newFile.createNewFile(); System.out.println("新建newFile文件后是否存在:" + newFile.exists() + ", 路径为:" + newFile.getAbsolutePath()); System.out.println("getName(): " + newFile.getName()); System.out.println("getParent(): " + newFile.getParent()); System.out.println("getParentFile(): " + newFile.getParentFile()); System.out.println("getAbsolutePath(): " + newFile.getAbsolutePath()); System.out.println("getAbsoluteFile(): " + newFile.getAbsoluteFile()); System.out.println("getAbsoluteFile().getParent(): " + newFile.getAbsoluteFile().getParent()); System.out.println("getPath(): " + newFile.getPath()); System.out.println("isAbsolute(): " + newFile.isAbsolute()); System.out.println("getCanonicalPath(): " + newFile.getCanonicalPath()); System.out.println("getCanonicalFile(): " + newFile.getCanonicalFile()); URI uri = newFile.toURI(); System.out.println("URI:" + uri.toString()); File[] listRoots = File.listRoots(); System.out.println("========系统根目录下的所有文件和路径========="); for (File root : listRoots) { System.out.println(root); } System.out.println("getTotalSpace(): " + file.getTotalSpace()/1024/1024/1024 + " G"); System.out.println("getFreeSpace(): " + file.getFreeSpace()/1024/1024/1024 + " G"); System.out.println("getUsableSpace(): " + file.getUsableSpace()/1024/1024/1024 + " G"); Path path = file.toPath(); System.out.println("Path: " + path); SpringApplication.run(DemoApplication.class, args); } }
2)运行结果:
getName(): FileTest.txt getParent(): C:\Users\LIAOJIANYA\Desktop\filetest\filedir02 getParentFile(): C:\Users\LIAOJIANYA\Desktop\filetest\filedir02 getAbsolutePath(): C:\Users\LIAOJIANYA\Desktop\filetest\filedir02\FileTest.txt getAbsoluteFile(): C:\Users\LIAOJIANYA\Desktop\filetest\filedir02\FileTest.txt getAbsoluteFile().getParent(): C:\Users\LIAOJIANYA\Desktop\filetest\filedir02 getPath(): C:\Users\LIAOJIANYA\Desktop\filetest\filedir02\FileTest.txt isAbsolute(): true getCanonicalPath(): C:\Users\LIAOJIANYA\Desktop\filetest\filedir02\FileTest.txt getCanonicalFile(): C:\Users\LIAOJIANYA\Desktop\filetest\filedir02\FileTest.txt canRead(): true canWrite(): false canExecute(): true exists(): true isDirectory(): false isFile(): true isHidden(): false true lastModified(): 1970-01-19 05:31:15 length(): 3 mkdir(): false mkdirs(): false ========上一级目录下的所有文件和路径========= dir1 dir2 FileTest.txt file重命名:true ========上一级目录下的所有文件和目录========= dir1 dir2 FileTest.txt canRead(): true setWritable(): true canWrite(): false canExecute(): true ========相对路径========= user.dir:C:\DATA\selfcode newFile文件是否存在:true 新建newFile文件后是否存在:true, 路径为:C:\DATA\selfcode\test.txt getName(): test.txt getParent(): null getParentFile(): null getAbsolutePath(): C:\DATA\selfcode\test.txt getAbsoluteFile(): C:\DATA\selfcode\test.txt getAbsoluteFile().getParent(): C:\DATA\selfcode getPath(): test.txt isAbsolute(): false getCanonicalPath(): C:\DATA\selfcode\test.txt getCanonicalFile(): C:\DATA\selfcode\test.txt URI:file:/C:/DATA/selfcode/test.txt ========系统根目录下的所有文件和路径========= C:\ getTotalSpace(): 237 G getFreeSpace(): 41 G getUsableSpace(): 41 G Path: C:\Users\LIAOJIANYA\Desktop\filetest\filedir02\FileTest.txt
3)结果的一些验证: a)文件长度以及修改时间
b)设置不可写后:
b)磁盘大小
c)user.dir路径
1)运行主类
File file2 = new File("C:\\Users\\LIAOJIANYA\\Desktop\\filetest\\filedir01"); File tmp01 = file2.createTempFile("tmp01", ".tmp"); File tmp02 = file2.createTempFile("tmp02", ".tmp", file2); tmp02.deleteOnExit(); File tmp03 = File.createTempFile("tmp03", null); System.out.println("tmp01: " + tmp01.getAbsolutePath()); System.out.println("tmp02: " + tmp02.getAbsolutePath()); System.out.println("tmp03: " + tmp03.getAbsolutePath());
2)运行结果
tmp01: C:\Users\LIAOJI~1\AppData\Local\Temp\tmp01870328708927314810.tmp
tmp02: C:\Users\LIAOJIANYA\Desktop\filetest\filedir01\tmp023046960943790159256.tmp
tmp03: C:\Users\LIAOJI~1\AppData\Local\Temp\tmp032224782289258299121.tmp
3)查看结果:
a)默认临时文件存放地址:
b)指定临时文件存放地址:
其中,如果需求中需要创建一个临时文件,这个临时文件可能作为存储使用,但在程序运行结束后需要删除文件,可以使用deleteOnExit()
方法。
public String[] list(FilenameFilter filter)
方法的使用。 1)运行主类
public class DemoApplication { public static void main(String[] args) { File file = new File("C:\\Users\\LIAOJIANYA\\Desktop\\filetest\\filedir02\\"); String[] nameArr = file.list(((dir, name) -> name.endsWith(".doc"))); for (String name : nameArr) { System.out.println(name); } } }
2)运行结果:
文件01.doc
3)验证:
其中,通过使用Lambda表达式,目标类型为FilenameFilter实现文件过滤,上面过滤了以.doc
结尾的文件。
위 내용은 Java에서 File 클래스 메소드를 사용하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!