기본 콘텐츠로 건너뛰기

오류 java.lang.IllegalArgumentException: The Unicode character [사] at code point [49,324] cannot be encoded as it is outside the permitted range of 0 to 255

오류
java.lang.IllegalArgumentException: The Unicode character [사] at code point [49,324] cannot be encoded as it is outside the permitted range of 0 to 255

내용

해결
한글 이름은 8비트로 포현할 수 없으므로 오류가 난다

이 블로그의 인기 게시물

Grid 정렬

  .container { display : grid ; gap : 22px ; width : 1000px ; grid-template-columns : repeat ( auto-fit , 150px ); margin : auto ; justify-content : center ; } .container {      display : grid ; gap : 22px ; grid-template-columns : repeat ( auto-fit , minmax ( 250px , 1fr )); }

Python 변수

지역 변수 a 전역 변수 밖에서 선언한 변수를 사용할 때 앞에 global 을 붙여준다     global a