Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

import android.content.Context;
import android.content.res.AssetManager;
import android.util.Log;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;

public class Main {
    public static InputStream loadAsset(Context context, String path, String filename) {
        AssetManager assetManager = context.getResources().getAssets();
        InputStream inputStream = null;

        try {
            String fullFilename = path + File.separator + filename;
            inputStream = assetManager.open(fullFilename);
            if (inputStream != null)
                Log.d("AssetsUtil", "Loaded " + fullFilename);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return inputStream;
    }
}