Android Text File Read read(String fileName)

Here you can find the source of read(String fileName)

Description

read

Declaration

public static String read(String fileName) throws IOException 

Method Source Code

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;

public class Main{
    public static String read(String fileName) throws IOException {
        return read(new File(fileName));
    }/* w ww.  j  a  va2s.c o  m*/
    public static String read(File file) throws IOException {
        return read(file, false);
    }
    public static String read(File file, boolean raw) throws IOException {
        FileInputStream fis = new FileInputStream(file);

        byte[] bytes = new byte[fis.available()];

        fis.read(bytes);

        fis.close();

        String s = new String(bytes, StringPool.UTF8);

        if (raw) {
            return s;
        } else {
            return StringUtil.replace(s, StringPool.RETURN_NEW_LINE,
                    StringPool.NEW_LINE);
        }
    }
}

Related

  1. getFileResourceText(String path)
  2. read(File file)
  3. read(File file)
  4. read(File file, boolean raw)
  5. read(String file)
  6. read(String pathName)
  7. readCipherSuites(String file)
  8. readClasspathTextFile(String filename)
  9. readFile(File file)