|
JavaTM Platform Standard Ed. 6 |
|||||||||
전 다음 | 프레임 있어 프레임 없음 |
CharsetDecoder 를 사용하고 있는 패키지 | |
---|---|
java.io | 이 패키지는, 데이터 스트림, 직렬화, 파일 시스템에 의한 시스템 입출력용으로 제공되고 있습니다. |
java.nio.channels | 입출력 조작을 실행할 수 있는 엔티티 (파일, 소켓등)에의 접속을 나타내는 채널이나, 다중화 된 비블록 입출력 조작용의 셀렉터를 정의합니다. |
java.nio.charset | 바이트와 Unicode 문자의 상호 변환을 실시하기 (위해)때문에, 캐릭터 세트, 디코더, 및 엔코더를 정의합니다. |
java.io 에서의 CharsetDecoder 의 사용 |
---|
CharsetDecoder 형의 파라미터를 가지는 java.io 의 생성자 | |
---|---|
InputStreamReader (InputStream in,
CharsetDecoder dec)
주어진 캐릭터 세트 디코더를 사용하는 InputStreamReader 를 작성합니다. |
java.nio.channels 에서의 CharsetDecoder 의 사용 |
---|
CharsetDecoder 형의 파라미터를 가지는 java.nio.channels 의 메소드 | |
---|---|
static Reader |
Channels. newReader (ReadableByteChannel ch,
CharsetDecoder dec,
int minBufferCap)
지정된 디코더를 사용해 지정된 채널 바이트를 디코드하는 리더를 구축합니다. |
java.nio.charset 에서의 CharsetDecoder 의 사용 |
---|
CharsetDecoder 를 돌려주는 java.nio.charset 의 메소드 | |
---|---|
abstract CharsetDecoder |
Charset. newDecoder ()
이 캐릭터 세트의 새로운 디코더를 구축합니다. |
CharsetDecoder |
CharsetDecoder. onMalformedInput (CodingErrorAction newAction)
부정 입력 에러에 대한 이 디코더의 액션을 변경합니다. |
CharsetDecoder |
CharsetDecoder. onUnmappableCharacter (CodingErrorAction newAction)
맵 할 수 없는 문자 에러에 대한, 이 디코더의 액션을 변경합니다. |
CharsetDecoder |
CharsetDecoder. replaceWith (String newReplacement)
이 디코더의 대체치를 변경합니다. |
CharsetDecoder |
CharsetDecoder. reset ()
이 디코더를 리셋 해, 내부 상태를 클리어 합니다. |
|
JavaTM Platform Standard Ed. 6 |
|||||||||
전 다음 | 프레임 있어 프레임 없음 |
Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms . Documentation Redistribution Policy 도 참조해 주세요.