首先,和eclipse不同的是assets文件夹的位置,在eclipse中,assets文件夹是在res文件夹下
在android studio中有所不同
如果也和eclipse一样放在res文件夹下读取会报异常。
读取:
InputStream inputStream = null;
try {
inputStream = getAssets().open("test.txt");
int size = inputStream.available();
int len = -1;
byte[] bytes = new byte[size];
inputStream.read(bytes);
inputStream.close();
String string = new String(bytes);
Log.d("aa", string);
} catch (IOException e) {
e.printStackTrace();
}