본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

JAVA

[File 입출력 - 구분자] os마다 파일경로 디렉토리의 구분자가 다른것을 처리해보자: pathSeparator pathSeparatorChar separator separatorChar

파일의 경로와 디렉토리나 파일의 이름을 구분하는데 사용되는 구분자가 os마다 다르다. 

만약 윈도우 구분자를 코드에 적었을때 os에서 오류를 일으킬 수 있기에 아래의 멤버변수들을 이용한다.

 

static String pathSeparator
파일 경로에서 디렉터리를 구분하는 데 사용되는 문자열입니다.

   String pathSeparator = File.pathSeparator;
   System.out.println(pathSeparator); // 출력: ;

 

 

static char pathSeparatorChar
파일 경로에서 디렉터리를 구분하는 데 사용되는 문자입니다.

   char pathSeparatorChar = File.pathSeparatorChar;
   System.out.println(pathSeparatorChar); // 출력: ;

 

 

 

static String separator
파일 경로에서 디렉터리를 나타내는 데 사용되는 문자열입니다.

   String separator = File.separator;
   System.out.println(separator); // 출력: \

 

 

static char separatorChar
파일 경로에서 디렉터리를 나타내는 데 사용되는 문자입니다.

   char separatorChar = File.separatorChar;
   System.out.println(separatorChar); // 출력: \