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.IOException;

import java.io.InputStreamReader;
import java.io.Reader;

public class Main {
    protected static Reader getJsonExample(Context mContext) throws IOException {
        //        return new InputStreamReader(mContext.getAssets().open("data.json"),"UTF-8");
        return new InputStreamReader(mContext.getAssets().open("data_05_10_2015.json"), "UTF-8");
    }
}