Java InputStreamReader Create readTextFile(File f)

Here you can find the source of readTextFile(File f)

Description

read Text File

License

Open Source License

Declaration

public static String readTextFile(File f) throws IOException 

Method Source Code

//package com.java2s;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;

import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static String readTextFile(File f) throws IOException {

        StringBuffer buf = new StringBuffer();

        BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(f), "UTF-8"));
        //      BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(f)));
        String inputLine;//w ww .  j  a  va  2s.  co m
        while ((inputLine = in.readLine()) != null) {
            buf.append(inputLine);
            buf.append('\n');
        }

        in.close();
        return buf.toString();

    }
}

Related

  1. getReader(final File file)
  2. getReader(final InputStream is)
  3. getReader(String name, String extension)
  4. getReaderForFile(IFile file)
  5. readTextFile(File f)
  6. readTextFile(File f)
  7. readTextFile(File f)
  8. readTextFile(File f)
  9. readTextFile(File f, int maxNumLines)