android 从assets和res中读取文件

11. assets文件夹资源的访问

       assets文件夹里面的文件都是保持原始的文件格式,需要用AssetManager以字节流的形式读取文件。
      1. 先在Activity里面调用 getAssets()来获取AssetManager引用。
      2. 再用AssetManager的 open(String fileName, int accessMode)方法则指定读取的文件以及访问模式就能得到输入流InputStream。 
      3. 然后就是用已经open file 的inputStream读取文件,读取完成后记得inputStream. close()
      4.调用AssetManager. close()关闭AssetManager。

需要注意的是,来自Resources和Assets 中的文件只可以读取而不能进行写的操作

 

 

 

从resource中的raw文件夹中获取文件并读取数据(资源文件只能读不能写)

从asset中获取文件并读取数据(资源文件只能读不能写)

 

http://www.cnblogs.com/luxiaofeng54/archive/2011/03/15/1984617.html

你可能感兴趣的:(android)