

참고 https://ssdragon.tistory.com/55
줄바꿈의 아스키 코드는 운영체제별로 차이가 있다.
System.lineSeparator()를 사용하면 os와 무관하게 줄바꿈을 출력할 수 있다.
Returns the system-dependent line separator string.
시스템에 종속된 줄 구분자(line separator) 문자열을 반환한다.
It always returns the same value - the initial value of the system property line.separator.
항상 시스템 소유 줄 구분자(line.separator)의 초기값과 똑같은 값을 반환한다.
On UNIX systems, it returns "\n"; on Microsoft Windows systems it returns "\r\n".
유닉스 시스템에서는 "\n"을 반환하고, 마이크로소프트 윈도우 시스템에서는 "\r\n"을 반환한다.
return : the system-dependent line separator string
반환 : 시스템에 종속된 줄 구분자(line separator) 문자열
since : 1.7
자바 1.7부터 제공되었음