CharsetEncoder replacement() method in Java with Examples
The replacement() method is a built-in method of the java.nio.charset.CharsetEncoder returns a byte array which is the replacement value of the encoder.
Syntax:
public final byte[] replacement()
Parameters: The function does not accepts any parameter.
Return Value: The function returns this encoder’s current replacement, which is never null and is never empty.
Below is the implementation of the above function:
Program 1:
// 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 encoder CharsetEncoder encoder = Charset.forName( "UTF16" ).newEncoder(); // Prints byte array representing // the replacement value System.out.println(encoder.replacement()); } } |
[B@232204a1
Program 2:
// 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 encoder CharsetEncoder encoder = Charset.forName( "US-ASCII" ).newEncoder(); // Prints byte array representing // the replacement value System.out.println(encoder.replacement()); } } |
[B@232204a1
Reference: https://docs.oracle.com/javase/10/docs/api/java/nio/charset/CharsetEncoder.html#replacement()
Recommended Posts:
- CharsetEncoder averageBytesPerChar() method in Java with Examples
- CharsetEncoder unmappableCharacterAction() method in Java with Examples
- CharsetEncoder isLegalReplacement() method in Java with Examples
- CharsetEncoder malformedInputAction() method in Java with Examples
- CharsetEncoder charset() method in Java with Examples
- CharsetEncoder reset() method in Java with Examples
- CharsetEncoder maxBytesPerChar() method in Java with Examples
- CharsetEncoder encode(CharBuffer in) method in Java with Examples
- CharsetDecoder replacement() method in Java with Examples
- Java lang.Long.lowestOneBit() method in Java with Examples
- Java.util.Collections.disjoint() Method in java with Examples
- Java.util.Collections.rotate() Method in Java with Examples
- Java lang.Long.numberOfTrailingZeros() method in Java with Examples
- Java lang.Long.highestOneBit() method in Java with Examples
- Java lang.Long.numberOfLeadingZeros() method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.