Java Small Example: Reading text file contents by specified encoding

Source: Internet
Author: User

The InputStreamReader constructor provides a parameter that specifies what encoding is used to convert the read bytes to characters. Here is an example:

01./**
02. * Read the specified text file, and return to the content version. *
@param    path file. *
@param charset file code
07. * @return The contents
of the file
@throws ioexception If the file does not exist, open fails, or read failed
. */
11.private static String Readfi Le (string path, String charset) throws 

IOException {
.    String content = "";    BufferedReader reader = null;    try {
.        reader = new BufferedReader (new InputStreamReader (New 

FileInputStream (path), CharSet));
String line        ;
While        (line = Reader.readline ())!= null) {
.            Content + = line + "\ n";    finally {
.        } if (reader!= null)
.            try {
.                Reader.close ();
A            catch (IOException e) {
.                The exception that appears to turn off Reader is generally not handled.
Num            }
.    }
return    content;
30.}

PS: This is just an example of a inputstreamreader usage. Really hit the big file, how can all read into memory? The StringBuffer are all free.

Related Article

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.