1, поместите файл testfile.txt в res / raw /
2, получите этот файл, как показано ниже
try {
InputStream inputStream = getResources().openRawResource(R.raw.TestFile);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
int length;
while ((length = inputStream.read()) != -1) {
stream.write(length);
}
return stream.toString();
} catch (IOException e) {
return "";
}