load File As String - Android java.io

Android examples for java.io:Text File

Description

load File As String

Demo Code


//package com.java2s;
import android.util.Log;
import java.io.BufferedReader;
import java.io.FileReader;

public class Main {
    private static String loadFileAsString(String filePath)
            throws java.io.IOException {
        StringBuffer fileData = new StringBuffer(1000);
        BufferedReader reader = new BufferedReader(new FileReader(filePath));
        char[] buf = new char[1024];
        int numRead = 0;
        try {// w  ww  . j a  va  2s . c  o  m
            while ((numRead = reader.read(buf)) != -1) {
                String readData = String.valueOf(buf, 0, numRead);
                fileData.append(readData);
            }
            return fileData.toString();
        } finally {
            try {
                reader.close();
            } catch (Exception e) {
                Log.w("Failed to close reader,", e);
            }
        }
    }
}

Related Tutorials