Java tutorial
//package com.java2s; //License from project: Open Source License import java.io.InputStream; import android.content.Context; public class Main { private static InputStream res2InputStream(Context context, int resID) { return context.getResources().openRawResource(resID); } }