MENU

Java 파일 이름에서 확장자 제거

목차

Java 파일 이름에서 확장자 제거

Java에서파일 이름에서확장자를 제거한 이름을 돌려주는 샘플 소스입니다.

샘플 프로그램

/** * 파일 이름에서 확장자를 제거한 이름을 반환합니다. * @param fileName 파일명 * @return 파일명 */ public static String getPreffix(String fileName) { if (fileName == null) return null; int point = fileName.lastIndexOf("."); if (point != - 1) { return fileName.substring(0, point); } return fileName; }


실행 결과

◆실행예

/** * 예제 실행 * @param args */ public static void main(String[] args) { String ret1 = getPreffix("test.html"); System.out.println(ret1); String ret2 = getPreffix(" C:\\test.html"); System.out.println(ret2); }

◆출력 결과

test C:\test
  • URL을(를) 확인했습니다!
목차