Skip to content

Instantly share code, notes, and snippets.

@fbukevin
Last active December 28, 2016 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fbukevin/2d70772f6d52383dc748fa3d0d1a3139 to your computer and use it in GitHub Desktop.
Save fbukevin/2d70772f6d52383dc748fa3d0d1a3139 to your computer and use it in GitHub Desktop.
Load general text file in Android
public String loadText(Context cxt, String file){
String text = "";
try{
InputStream is = cxt.getAssets().open(file);
int size = is.available();
byte[] buffer = new byte[size];
is.read(buffer);
is.close();
text = new String(buffer, "UTF-8");
} catch(IOException ex){
ex.printStackTrace();
}
return text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment