java 알려진 파일 확장자 코드 가져오기

1992 단어 확장자
1. 수요 분석
1. 이미 알고 있는 파일의 확장자 가져오기 --------------------------------------------------------------------------------------------------------------------------------------------------------
2、abc.txt의 확장자는 txt, abc입니다.Java.txt의 확장명도 txt--------------- 확장자의 정확성을 보증합니다
2. 기술적 난점
1. 주어진 경로를 파일 대상으로 변환하고 전체 파일 이름을 가져옵니다.
new File () 클래스로 직접 실행하고 getName을 통해 파일 이름을 얻을 수 있습니다
2. 파일 이름을 통해 어떻게 확장자를 얻을 수 있습니까?
파일 이름을 정규 표현식으로 분할하면
코드 구현: (PS는 지정된 디렉터리에서 순환 디렉터리의 파일 확장자를 가져오는 함수를 추가했습니다)

package com.itheima;

import java.io.File;

/**
 * 7、  .  : abc.txt txt, abc.java.txt txt.
 * 
 * @author [email protected]
 */

public class Test7 {

	public static void main(String[] args) {
		String srcPath = "D:/java/java.copy.doc";

		getFilenameExtension(srcPath);
	}

	//  
	public static void getFilenameExtension(String srcPath) {
		//  
		File file = new File(srcPath);

		if (file.isFile()) {
			String name = file.getName();

			String[] exName = name.split("\\.");

			System.out.println(exName[exName.length - 1]);
		} else {
			System.out.println("It's not a file!");
		}
	}

	//  
	public static void getDirFilenameExtension(String srcPath) {
		//  
		File[] file = (new File(srcPath)).listFiles();
		for (int i = 0; i < file.length; i++) {
			if (file[i].isDirectory()) {
				//  
				srcPath = srcPath + "/" + file[i].getName();
				getDirFilenameExtension(srcPath);
			} else {
				//  
				File sourceFile = file[i];
				//  
				String name = sourceFile.getName();

				String[] exName = name.split("\\.");

				System.out.println(exName[exName.length - 1]);
			}
		}
	}
}
구체적인 다른 방법은 우리가 전에 발표한 문장을 참고할 수 있다.

좋은 웹페이지 즐겨찾기