最新下载
热门教程
- 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(); } } }
相关文章
- 时空中的绘旅人天宇之间怎么玩 绘旅人天宇之间活动玩法介绍 12-25
- QQ2024年度报告怎么看 2024qq年度报告玩法介绍 12-25
- 归龙潮珠砂什么时候up 归龙潮红缘绮梦卡池介绍 12-25
- 王者荣耀S38赛季有什么更新 12-25
- 王者荣耀S38赛季有什么更新 王者荣耀S38赛季更新内容介绍 12-25
- 世界之外12.25有什么更新 世界之外12月25日更新内容介绍 12-25