Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How java uses FileVisitor to traverse files and directories

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

Editor to share with you how java uses FileVisitor to traverse files and directories, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!

In early versions of Java, if you needed to traverse files in a specified directory, you needed to do it recursively, which was a bit complex and inflexible. Using the walkFileTree () method in the Files tool class in Java7, you can easily traverse all the files in the directory. This method requires a Path and a FileVisitor parameter. Where Path is the path to traverse, and FileVisitor can be seen as a file accessor, it mainly provides four methods, which can be seen in the program. The four FileVisitor methods all return a FileVisitResult object, which is an enumeration class that represents some subsequent operations after the return.

FileVisitResult consists of four common operations.

1. FileVisitResult.CONTINUE continues traversing 2, FileVisitResult.TERMINATE aborts access 3, FileVisitResult.SKIP_SIBLINGS does not access files or directories of the same level 4, FileVisitResult.SKIP_SUBTREE does not access subdirectories

You can traverse the file by creating a SimpleFileVisitor object, which is the implementation class of FileVisitor, so that you can optionally override the specified method

The following program traverses the directory using FileVisitor, and simply looks for files in the specified directory.

Package com.sdjz.test1;import java.io.IOException;import java.nio.file.FileVisitResult;import java.nio.file.Files;import java.nio.file.Path;import java.nio.file.Paths;import java.nio.file.SimpleFileVisitor;import java.nio.file.attribute.BasicFileAttributes;import java.util.List Public class FileVisitorTest {public static void main (String [] args) throws IOException {/ / use FileVisitor to traverse the directory Files.walkFileTree (Paths.get ("d:", "workspace"), new SimpleFileVisitor () {/ / trigger the method @ Override public FileVisitResult preVisitDirectory (Path dir, BasicFileAttributes attrs) throws IOException {System.out.println ("accessing" + dir + "directory") before accessing the subdirectory; return FileVisitResult.CONTINUE } / / trigger the method @ Override public FileVisitResult visitFile (Path file, BasicFileAttributes attrs) throws IOException {System.out.println ("accessing" + file + "File"); if (file.endsWith ("FilesTest.java")) {System.out.println ("- found FilesTest.java, file contents -"); List list = Files.readAllLines (file); / / print out the contents of the file System.out.println (list) Return FileVisitResult.TERMINATE;} return FileVisitResult.CONTINUE;} / / trigger the method @ Override public FileVisitResult visitFileFailed (Path file, IOException exc) throws IOException {/ / write some specific business logic return super.visitFileFailed (file, exc);} / / trigger the method @ Override public FileVisitResult postVisitDirectory (Path dir, IOException exc) throws IOException {/ / write some specific business logic return super.postVisitDirectory (dir, exc) after accessing the directory });}}

The above is all the content of the article "how java uses FileVisitor to traverse files and directories". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report