반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- windows
- 자바
- Array
- IntelliJ
- 이클립스
- json
- CSS
- list
- vscode
- js
- table
- 자바스크립트
- Maven
- 이탈리아
- Visual Studio Code
- Button
- input
- javascript
- 문자열
- 인텔리제이
- Files
- 배열
- date
- html
- ArrayList
- 테이블
- Java
- Eclipse
- CMD
- string
Archives
- Today
- Total
목록method (1)
어제 오늘 내일
[JavaAPI] String 클래스 메소드와 예제(3) - Unicode 처리(2)
이번에는 앞에서 소개한 32bit로 인코딩된 문자를Java 코드를 통해 확인해 보도록 하겠다.([JavaAPI] String 클래스 메소드와 예제(2) - Unicode 처리(1) 참조) public boolean equals(Object anObject) Returns the length of this string. The length is equal to the number of Unicode code units in the string.String 클래스의 length() 메소드는 string의 길이를 리턴한다. 정확히는 unicode code unit의 숫자를 리턴한다. int ch32[] = {0x1F0A1}; // 🂡 String st32 = new String(ch32, 0, 1); int ..
IT/Java
2016. 6. 12. 02:53