Java FileReader Class getEncoding() Method with Examples Last Updated : 02 Feb, 2022 Comments Improve Suggest changes Like Article Like Report The getEncoding() method of FileReader Class in Java is used to return the name of the current stream's character encoding. If the stream is utilizing a historical encoding name, it will be returned; otherwise, the canonical encoding name of the stream will be returned. Syntax: public String getEncoding() Returns: This method returns the encoding's historical name, or null if the stream has been closed. Example: We generated two file readers, input1 and input2, in the preceding example. The character encoding is not specified in input1. As a result, the default character encoding is returned by the getEncoding() function. The character encoding, UTF8, is specified by input2. As a result, the getEncoding() function returns the character encoding supplied. Java // Java Program to demonstrate the working of // getEncoding() Method of FileReader Class import java.io.FileReader; import java.nio.charset.Charset; class GFG { public static void main(String[] args) { try { // Creates a FileReader with the encoding set to // default. FileReader input1 = new FileReader( "C:\\Users\\lenovo\\Desktop\\input.txt"); // Creates a FileReader with the specified // encoding. FileReader input2 = new FileReader( "C:\\Users\\lenovo\\Desktop\\input.txt", Charset.forName("UTF8")); // The file reader's character encoding is // returned. System.out.println( "Character encoding of input1: " + input1.getEncoding()); System.out.println( "Character encoding of input2: " + input2.getEncoding()); // Closing Reader input1.close(); input2.close(); } catch (Exception e) { e.getStackTrace(); } } } Assume we have a text file named input.txt that contains the following information. This file will be utilized as a source of data in our example application. GEEKSFORGEEKS Output: Create Quiz Comment S sanketnagare Follow 0 Improve S sanketnagare Follow 0 Improve Article Tags : Java Java-Functions java-file-handling Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings7 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java5 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages2 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface5 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java7 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management3 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like