Java with BufferedReader read utf-8 files garbled

Source: Internet
Author: User

The original code:

BufferedReader reader = new BufferedReader (new FileReader (file));

Read Utf-8 file garbled, modified as follows:

FileInputStream in = new FileInputStream (file);
BufferedReader reader = new BufferedReader (new InputStreamReader (in, "UTF-8"));

Error resolution.

The cause of the problem occurs:

The problem is that in the process of FileReader reading a file, FileReader inherits InputStreamReader, but does not implement a constructor with character set parameters in the parent class, so filereader can only be decoded by the system default character set, and then in UTF-8 -> GBK-> UTF-8, the code loses during the process, causing the result to not restore the original character. The 
reason is clear, this problem is not difficult to solve, with InputStreamReader instead of Filereader,inputstreamreader isr=new InputStreamReader (new FileInputStream (FileName), "UTF-8"), so that read the file will be directly with the UTF-8 decoding, no more coding conversion.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.