반응형
자바 String의 split 함수를 쓰다가 위와같은 exception이 발생핳였다
split함수에 괄호 ")" 나 "("를 넣어줄 때 발생한다.
해결방법은 괄호 앞에 백스페이스 두개를 넣어주면 된다. 즉 "\\)"
아래처럼 사용
"문자열1 ) 문자열2".split("\\)");
반응형
'Android > 디버깅' 카테고리의 다른 글
[Android] RecyclerView 데이터 꼬일 때 (0) | 2022.06.28 |
---|---|
[Android] Room DB 에서 query함수 동작 안할 때 (0) | 2022.06.24 |
[Android] AlertDialog에서 showSoftInput 동작 안할 때 (0) | 2022.06.23 |
Installed Build Tools revision 31.0.0 is corrupted. Remove and install again using the SDK Manager (0) | 2022.04.13 |
You cannot keep your settings in the secure settings (0) | 2022.04.05 |
댓글