Java tutorial
//package com.java2s; //License from project: Apache License import android.content.res.AssetManager; import java.io.IOException; import java.io.InputStream; public class Main { public static String AssetJSONFile(String filename, AssetManager manager) throws IOException { String json = null; InputStream is = manager.open(filename); int size = is.available(); byte[] buffer = new byte[size]; is.read(buffer); is.close(); json = new String(buffer, "UTF-8"); return json; } }