最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Android API编程之Assets文件操作示例
时间:2022-06-25 23:23:13 编辑:袖梨 来源:一聚教程网
publicclassReadAssetActivityextendsActivity { privateTextView mTextView; @Override protectedvoidonCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.read_asset); initViews(); readAssetsData(); listAssetsFiles("fonts");// 列出文件目录 } privatevoidreadAssetsData() { InputStream is =null; try{ // 读取Assets文件夹下对应文件的输入流 is = getAssets().open("asset_test.txt"); // 获取文件输入流的总大小 intsize = is.available(); // 把整个文件流放到一个Byte[]缓冲区 byte[] buffer =newbyte[size]; is.read(buffer); is.close(); // 将缓冲区数据转换为字符串 String text =newString(buffer); mTextView.setText(text); }catch(IOException e) { e.printStackTrace(); }finally{ try{ if(is !=null) { is.close(); } }catch(IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } privatevoidinitViews() { mTextView = (TextView) findViewById(R.id.text); } /** * 获取Assets下指定文件夹下文件数量 情况 * * @description: * @author ldm * @date 2016-4-27 上午9:25:54 */ privatevoidlistAssetsFiles(String filePath) { AssetManager am = getAssets(); String[] fileName; try{ fileName = am.list(filePath); if(fileName.length >0) { for(inti =0; i < fileName.length; i++) { Log.e("ldm", String.format("在"+ filePath +"中文件路下有:[%d] 文件数量", fileName.length)); } } }catch(IOException e) { e.printStackTrace(); } } }
相关文章
- 王者荣耀侦探能力大测试攻略 王者荣耀侦探能力大测试怎么过 11-22
- 无期迷途主线前瞻兑换码是什么 11-22
- 原神欧洛伦怎么培养 11-22
- 炉石传说网易云音乐联动怎么玩 11-22
- 永劫无间手游确幸转盘怎么样 11-22
- 无期迷途主线前瞻兑换码是什么 无期迷途主线前瞻直播兑换码介绍 11-22