자바 공백 제거 방법
엑셀파일에서 셀을 클릭하고 복사 후 TEXT필드에 붙여넣기 하면
값 뒤에 줄바꿈 처리가 되어 들어오는데 이 때 줄바꿈 밑 공백 제거하는 방법
시스템에 따들 줄바꿈 개행문자 차이
- unix > \n
- mac > \r
- windows > \r\n
자바 줄바꿈 공백 제거
System.getProperty("line,separator")
public void setText(String txt) {
String text = txt;
text.replace(System.getProperty("line.separator").toString(), "");
}
public void setText(String txt) {
String text = txt;
text = text.replace("\n", "");
}
public void setText(String txt) {
String text = txt;
text = text.replace("\\s", "");
}
'JAVA' 카테고리의 다른 글
Eclipse invalid LOC header (bad signature) (0) | 2022.08.16 |
---|---|
[JAVA] 자바 SWT dialog 실행 중 부모 객체 동기화 Invalid thread access (0) | 2022.05.26 |
[Java] 자바 스레드 생성 상속과 인터페이스를 이용한 사용 방법 (0) | 2022.04.01 |
Eclipse 이클립스 Git 저장소 clone으로 연결하기 (0) | 2022.03.07 |
[JAVA] CSV 파일 데이터 읽기 (0) | 2021.11.02 |