Java에서는 java.nio.file 패키지의 Files 및 Paths 클래스를 사용하여 폴더에 있는 모든 파일 이름 목록을 얻을 수 있습니다. 먼저 필요한 클래스를 가져온 다음 대상 폴더의 경로를 지정합니다. 다음으로 Files.list() 메서드를 사용하여 폴더의 모든 파일과 하위 폴더에 대한 스트림 개체를 가져옵니다. 마지막으로 map() 메서드를 사용하여 파일 이름을 추출하고 forEach() 메서드를 사용하여 각 파일 이름을 인쇄합니다.
Java에서는 java.nio.file 패키지의 파일 및 경로 클래스를 사용하여 폴더의 모든 파일 이름을 읽을 수 있습니다. 다음은 간단한 예제 튜토리얼입니다.
1단계: 필요한 클래스 가져오기
먼저 Java 프로그램에서 필요한 클래스를 가져와야 합니다. 이러한 클래스는 java.nio.file 패키지에 있습니다.
java
import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.util.stream.Stream;
2단계: 폴더 경로 지정
다음으로, 파일 이름을 읽으려는 폴더의 경로를 지정해야 합니다. Paths.get() 메서드를 사용하여 Path 객체를 만들 수 있습니다.
java
Path directoryPath = Paths.get("/path/to/your/directory"); 将/path/to/your/directory替换为你想要读取的文件夹的实际路径。
3단계: 폴더의 파일 이름을 읽습니다.
그런 다음 Files.list(directoryPath) 메소드를 사용하여 포함 폴더 Stream 객체를 가져올 수 있습니다. 모든 파일 및 하위 폴더에 대해. map(Path::getFileName) 메서드를 사용하여 각 Path 개체를 해당 파일 이름으로 변환하고 forEach(System.out::println) 메서드를 사용하여 각 파일 이름을 인쇄할 수 있습니다.
java
try (Stream<Path> paths = Files.list(directoryPath)) { paths .map(Path::getFileName) .forEach(System.out::println); } catch (IOException e) { e.printStackTrace(); }
Files.list() 메서드는 AutoCloseable 인터페이스를 구현하는 Stream 객체를 반환하므로 이를 보장하기 위해 try-with-resources 문 블록에서 사용해야 합니다. 파일 이름을 읽은 후 스트림을 올바르게 닫습니다.
full 예 : 폴더에서 모든 파일 이름을 읽는 방법을 보여주는 완전한 Java 프로그램 예제 예제 :
java
import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.util.stream.Stream; public class ReadFileNames { public static void main(String[] args) { Path directoryPath = Paths.get("/path/to/your/directory"); try (Stream<Path> paths = Files.list(directoryPath)) { paths .map(Path::getFileName) .forEach(System.out::println); } catch (IOException e) { e.printStackTrace(); } } }
/to/your/directory를 읽으려는 폴더의 실제 경로로 지정한 다음 프로그램을 실행하십시오. 폴더에 있는 모든 파일의 이름이 인쇄됩니다.
위 내용은 Java에서 폴더의 모든 파일 이름을 읽는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!