--src
--com.example.Demo1
--IndexActivity.class
--test.txt
在IndexActivity.class 获取test.txt中的文件内容
InputStream inputStream = getClass().getResourceAsStream("test.txt");
//getClass().getResourceAsStream("path"); 获取当前类的path,例如此例中就为 /com.example.Demo1/path