백엔드132 자바 UTF-8 바이트 public static void main(String arg[]) throws UnsupportedEncodingException { String line="하하하"; System.out.print("문자열 길이 : "+line.length()); // 3 System.out.print("문자열 byte 길이 : "+line.getBytes("UTF-8").length); // 9 System.out.print("문자열 byte 길이 : "+line.getBytes().length); // 9 } 2024. 3. 19. du -h --max-depth=1 du -h --max-depth=1 : 숨겨진 파일 포함해서 ls -a 했을 때 나오는 파일 / 디렉토리들의 크기 확인 2023. 4. 4. 용량 큰 파일/디렉토리 검색 du -h --max-depth=1 | sort -hr 2023. 1. 12. [Spring] Post 요청과 Content-Type 의 관계 https://blog.naver.com/PostView.naver?blogId=writer0713&logNo=221853596497&redirect=Dlog&widgetTypeCall=true&directAccess=false [Spring] Post 요청과 Content-Type의 관계 도움이 되시면 '광고'를 한번씩 눌러시면 감사하겠습니다 :) 실무에서 RestAPI를 만들면서 ... blog.naver.com Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported 2022. 9. 27. 객체지향 원칙 바뀌는 부분은 캡슐화한다. 상속보다는 구성을 활용한다. 구현보다는 인터페이스에 맞춰서 프로그래밍 한다 상호작용하는 객체 사이에서는 가능하면 느슨한 결합을 사용해야 한다. 클래스는 확장에는 역려 있어야 하지만, 변경에는 닫혀 있어야 한다. (OCP) 2022. 3. 27. 이전 1 ··· 6 7 8 9 10 11 12 ··· 27 다음 728x90