Java BufferedReader Read readFile(File file)

Here you can find the source of readFile(File file)

Description

read File

License

Apache License

Declaration

public static String readFile(File file) throws IOException 

Method Source Code


//package com.java2s;
//License from project: Apache License 

import java.io.BufferedReader;

import java.io.File;

import java.io.FileReader;

import java.io.IOException;

public class Main {
    /***********************************************************************/
    public static String readFile(String absolutePath) throws IOException {
        return readFile(new File(absolutePath));
    }/* ww w .j a  v  a 2s  .  c  o m*/

    /***********************************************************************/
    public static String readFile(File file) throws IOException {
        BufferedReader in = new BufferedReader(new FileReader(file));
        return readBuffer(in);
    }

    public static String readBuffer(BufferedReader in) throws IOException {
        StringBuffer string = new StringBuffer();
        while (in.ready()) {
            string.append(in.readLine());
            string.append("\n");
        }
        in.close();
        return string.toString();
    }
}

Related

  1. readFile(File file)
  2. readFile(File file)
  3. readFile(File file)
  4. readFile(File file)
  5. readFile(File file)
  6. readFile(File file)
  7. readFile(File file)
  8. readFile(File file)
  9. readFile(File file)