자바 가 모든 폴 더 와 파일 경 로 를 읽 는 방법
f:\aa 폴 더 에 다음 그림 과 같은 폴 더 와 파일 이 있 습 니 다:
자바 에 서 는 f:/aa 의 모든 파일 경 로 를 읽 습 니 다.
1.먼저 파일 과 용기 류 의 Array List 를 사 용 했 기 때문에 처음에 다음 과 같은 가방 을 도입 해 야 합 니 다.
import java.io.*;
import java.util.*;
2.방법 은 다음 과 같 습 니 다.그 중에서 File dirFile 은 디스크 부 호 를 제외 하고 f:를 제외 하고 모든 합 법 적 인 경 로 를 받 아들 일 수 있 습 니 다.디스크 에 시스템 파일 이 포함 되 어 있 기 때문에 접근 을 거부 합 니 다.디스크 를 읽 기 때문에 빈 포인터 이상 이 발생 할 수 있 습 니 다.
// 、
// 、 ,
public static ArrayList<String> Dir(File dirFile) throws Exception {
ArrayList<String> dirStrArr = new ArrayList<String>();
if (dirFile.exists()) {
// listFiles() 、
File files[] = dirFile.listFiles();
for (File file : files) {
// dirFile , / \ ,
if (dirFile.getPath().endsWith(File.separator)) {
dirStrArr.add(dirFile.getPath() + file.getName());
} else {
// , , , ,
dirStrArr.add(dirFile.getPath() + File.separator
+ file.getName());
}
}
}
return dirStrArr;
}
위의 방법 은 f:\aa 의 새 폴 더 아래 xlsx 를 읽 지 않 는 것 입 니 다.읽 는 과정 에서 폴 더 가 모든 하위 폴 더,파일 을 동시에 읽 으 려 면 재 귀 를 사용 해 야 합 니 다.전체 동적 배열 을 설정 하 십시오.
public static ArrayList<String> dirAllStrArr = new ArrayList<String>();
그리고 방법 은 다음 과 같다.
public static void DirAll(File dirFile) throws Exception {
if (dirFile.exists()) {
File files[] = dirFile.listFiles();
for (File file : files) {
// 。
if (file.isDirectory()) {
//
DirAll(file);
} else {
//
if (dirFile.getPath().endsWith(File.separator)) {
dirAllStrArr.add(dirFile.getPath() + file.getName());
} else {
dirAllStrArr.add(dirFile.getPath() + File.separator
+ file.getName());
}
}
}
}
}
사실 읽 는 과정 에서 관건 은 listFiles()방법 을 이용 하여 이 폴 더 의 모든 파일 목록 을 가 져 오 는 것 이다.그 다음 에[Java]폴 더 와 모든 하위 파일 과 하위 폴 더 이동(클릭 하여 링크 열기),[자바]파일 입 출력 흐름 을 이용 하여 한 폴 더 에 있 는 모든 파일 을 복사 하 는 다른 폴 더 작업 을 완료 합 니 다.(클릭 하여 링크 열기)와 마찬가지 로 폴 더 를 만나면 재 귀적 이다.위의 모든 방법 은 다음 과 같은 자바 파일 입 니 다.
import java.io.*;
import java.util.*;
public class fileList {
// ,
// , 、 , ,
public static ArrayList<String> dirAllStrArr = new ArrayList<String>();
// 、
// 、 ,
public static ArrayList<String> Dir(File dirFile) throws Exception {
ArrayList<String> dirStrArr = new ArrayList<String>();
if (dirFile.exists()) {
// listFiles() 、
File files[] = dirFile.listFiles();
for (File file : files) {
// dirFile , / \ ,
if (dirFile.getPath().endsWith(File.separator)) {
dirStrArr.add(dirFile.getPath() + file.getName());
} else {
// , , , ,
dirStrArr.add(dirFile.getPath() + File.separator
+ file.getName());
}
}
}
return dirStrArr;
}
public static void DirAll(File dirFile) throws Exception {
if (dirFile.exists()) {
File files[] = dirFile.listFiles();
for (File file : files) {
// 。
if (file.isDirectory()) {
//
DirAll(file);
} else {
//
if (dirFile.getPath().endsWith(File.separator)) {
dirAllStrArr.add(dirFile.getPath() + file.getName());
} else {
dirAllStrArr.add(dirFile.getPath() + File.separator
+ file.getName());
}
}
}
}
}
public static void main(String[] args) throws Exception {
File dirFile = new File("f:/aa");
System.out.println(Dir(dirFile));
DirAll(dirFile);
System.out.println(dirAllStrArr);
}
}
실행 결 과 는 다음 과 같 습 니 다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.