Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android從資源文件中讀取文件流並顯示的方法

android從資源文件中讀取文件流並顯示的方法

編輯:關於Android編程

本文實例講述了android從資源文件中讀取文件流並顯示的方法。分享給大家供大家參考。具體如下:

在android中,假如有的文本文件,比如TXT放在raw下,要直接讀取出來,放到屏幕中顯示,可以這樣:

private void doRaw(){
  InputStream is = this.getResources().openRawResource(R.raw.ziliao);
  try{
    doRead(is);
  }catch(IOException e){
    e.printStackTrace();
  }
}
private void doRead(InputStream is) throws IOException{
  DataInputStream dis = new DataInputStream(is);
  byte[]buffer = new byte[is.available()];
  dis.readFully(buffer); 
  textView.setText(new String(buffer));
  dis.close();
  is.close();
}
//就是用this.getResources().openRawResource這個就可以了

希望本文所述對大家的Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved