Solve bufferedreader read UTF-8 file Chinese garbled ()

Source: Internet
Author: User

Garbled characters are read from TXT files.

Java code
  1. Bufferedreader READ = new bufferedreader (New filereader (new file (filename )));



Solution:

Java code
  1. Inputstreamreader ISR = new inputstreamreader (New fileinputstream (file), "UTF-8 ");
  2. Bufferedreader READ = new bufferedreader (ISR );



Because both inputstreamreader and bufferedreader inherit from Reader, And the bufferedreader constructor is reader.



The same is true for writer.

Java code
    1. Fileoutputstream writerstream = new fileoutputstream (filepath, true );
    2. Bufferedwriter owriter = new bufferedwriter (New outputstreamwriter (writerstream, "UTF-8 "));

Solve bufferedreader read UTF-8 file Chinese garbled ()

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.