Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.content.Context;

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

public class Main {
    public static Context sAppContext;

    public static String loadString(String filename) throws Exception {
        File file = new File(sAppContext.getCacheDir().getPath() + "/" + filename);
        byte[] buff = new byte[(int) file.length()];
        FileInputStream fis = new FileInputStream(file);
        fis.read(buff);
        String string = new String(buff);
        return string;
    }
}