http://clairdelunes.tistory.com/17


줄바꿈 계속 \n으로 안되서 찾아보니까 \r\n 으로 해야한다고 한다.


1. System.out.format() 을 이용하여 %n 개행 처리.

이렇게하면 운영체제 에 맞게 처리된다.


2. (String타입 변수명).replace("\n","\r\n")

이렇게하면 윈도우 호환에 맞게끔 처리할 수 있다.


3. String line = System.getProperty("line.separator");

   str = str.replace("\n", line);

요렇게 해도 운영체제에 맞게 줄바꿈처리가 된다.


주로 3번을 많이 사용하게 되는 것 같다.



출처: http://clairdelunes.tistory.com/17 [거꾸로 바라본 세상]

'프로그래밍 > JAVA' 카테고리의 다른 글

public static void main(String[] args)  (0) 2018.11.22
java exe 파일 만들기  (0) 2018.09.01
JAVA 파일입출력  (0) 2018.08.30
자바 다운그레이드  (0) 2018.08.26
자바빈(DTO), DAO  (0) 2018.07.28

+ Recent posts