본문 바로가기

Programming/JAVA

파일경로와 파일명을 입력해주고 경로와 파일명 추출하기


  1. public class Global {  
  2.     public static String getFileName(String fullPath) {
  3.         int S = fullPath.lastIndexOf("\\");
  4.         int M = fullPath.lastIndexOf(".");
  5.         int E = fullPath.length();
  6.        
  7.         String filename = fullPath.substring(S+1, M);
  8.         String extname = fullPath.substring(M+1, E);
  9.        
  10.         String extractFileName = filename + "." + extname;
  11.         return extractFileName;
  12.     }
  13. }