CharsetEncoder encode(CharBuffer in) method in Java with Examples Last Updated : 10 Jan, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report The encode(CharBuffer input) method is a built-in method of the java.nio.charset.CharsetEncoder which encodes the content which is remaining of a single input character buffer to a newly-allocated byte-buffer. The encode() method in itself implements an entire operation of encoding. This function should not be invoked if the operation is in progress. Syntax: public final ByteBuffer encode(CharBuffer input) Parameters: The function accepts a mandatory parameter input which specifies the input character buffer. Return Value: The function returns a newly-allocated byte buffer containing the result of the encoding operation. Error and Exceptions: The function throws four exceptions which can be described as below: IllegalStateException: It is thrown if an encoding operation is already in progress. MalformedInputException: It is thrown if the character sequence starting at the input buffer's current position is not a legal sixteen-bit Unicode sequence and the current malformed-input action is CodingErrorAction.REPORT. UnmappableCharacterException: It is thrown if the character sequence starting at the input buffer's current position cannot be mapped to an equivalent byte sequence and the current unmappable-character action is CodingErrorAction.REPORT CharacterCodingException Below is the implementation of the above function: Program 1: Java // Java program to implement // the above function import java.nio.CharBuffer; import java.nio.charset.Charset; import java.nio.charset.CharsetEncoder; public class Main { public static void main(String[] args) throws Exception { // Gets the new encoder CharsetEncoder encoder = Charset.forName("UTF8").newEncoder(); // Encodes String res = "gfggfg"; System.out.println(encoder.encode(CharBuffer.wrap(res))); } } Output: java.nio.HeapByteBuffer[pos=0 lim=6 cap=6] Program 2: Java // Java program to implement // the above function import java.nio.CharBuffer; import java.nio.charset.Charset; import java.nio.charset.CharsetEncoder; public class Main { public static void main(String[] args) throws Exception { // Gets the new encoder CharsetEncoder encoder = Charset.forName("UTF16").newEncoder(); // Encodes String res = "gopal"; System.out.println(encoder.encode(CharBuffer.wrap(res))); } } Output: java.nio.HeapByteBuffer[pos=0 lim=12 cap=21] The exception programs cannot be demonstrated in programs. Reference: https://docs.oracle.com/javase/10/docs/api/java/nio/charset/CharsetEncoder.html#encode(java.nio.CharBuffer) Comment More infoAdvertise with us Next Article CharsetEncoder charset() method in Java with Examples G gopaldave Follow Improve Article Tags : Java Java-Functions Java-NIO package Java-CharsetEncoder Practice Tags : Java Similar Reads CharsetEncoder charset() method in Java with Examples The charset() method is a built-in method of the java.nio.charset.CharsetEncoder returns the charset that created this encoder. Syntax: public final Charset charset() Parameters: The function does not accepts any parameter. Return Value: The function returns this encoder's charset. Below is the impl 1 min read CharBuffer chars() methods in Java with Examples The chars() method of java.nio.CharBuffer Class is used to return a stream of int zero-extending the char values from this sequence. Any char which maps to a surrogate code point is passed through uninterpreted. The stream binds to this sequence when the terminal stream operation commences (specific 2 min read CharBuffer chars() methods in Java with Examples The chars() method of java.nio.CharBuffer Class is used to return a stream of int zero-extending the char values from this sequence. Any char which maps to a surrogate code point is passed through uninterpreted. The stream binds to this sequence when the terminal stream operation commences (specific 2 min read CharsetEncoder averageBytesPerChar() method in Java with Examples The averageBytesPerChar() method is a built-in method of the java.nio.charset.CharsetEncoder which returns the average number of bytes that will be produced for each character of input which is provided. The heuristic value thus is used to estimate the size of the output buffer required for a given 1 min read CharsetDecoder averageCharsPerByte() method in Java with Examples The averageCharsPerByte() method is a built-in method of the java.nio.charset.CharsetDecoder class which returns the average number of characters that will be produced for each byte of input. This heuristic value may be used to estimate the size of the output buffer required for a given input sequen 2 min read CharsetDecoder charset() in Java with examples CharsetDecoder.charset() is an in-built method in Java of CharsetDecoder class that returns the charset that created this decoder. Syntax: public final Charset charset() Parameter: The function does not accepts any parameter. Return value: The function returns the decoder's charset. Program below de 1 min read Like