Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第61章、資源文件之存取操作(從零開始學Android)

第61章、資源文件之存取操作(從零開始學Android)

編輯:Android技術基礎

Android資源主要包括文本字符串(strings)、顏色(colors)、數組(arrays)、動畫(anim)、布局(layout)、圖像和圖標(drawable)、音頻視頻(media)和其他應用程序使用的組件。

  本章著重講解一下關於資源文件的存儲操作。

一、設計界面

  1、布局文件

  打開activity_main.xml文件。

  輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout   
  3.     xmlns:android="http://schemas.android.com/apk/res/android"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="match_parent"  
  6.     android:orientation="vertical" >  
  7.   
  8.     <Button  
  9.         android:id="@+id/read"  
  10.         android:layout_width="wrap_content"  
  11.         android:layout_height="wrap_content"  
  12.         android:text="讀取資源文件(Raw)" />  
  13.   
  14.     <TextView  
  15.         android:id="@+id/cont"  
  16.         android:layout_width="wrap_content"  
  17.         android:layout_height="wrap_content" />  
  18.   
  19. </LinearLayout>  


二、程序文件

  打開“src/com.genwoxue.fileresources/MainActivity.java”文件。

  然後輸入以下代碼:

[java] view plain copy  
  1. package com.genwoxue.fileresources;  
  2.   
  3.   
  4. import java.io.IOException;  
  5. import java.io.InputStream;  
  6. import java.util.Scanner;  
  7. import android.os.Bundle;  
  8. import android.view.View;  
  9. import android.view.View.OnClickListener;  
  10. import android.widget.Button;  
  11. import android.widget.Toast;  
  12. import android.app.Activity;  
  13. import android.content.res.Resources;  
  14.   
  15. public class MainActivity extends Activity {  
  16.   
  17.     private Button btnRead=null;  
  18.       
  19.     @Override  
  20.     protected void onCreate(Bundle savedInstanceState) {  
  21.         super.onCreate(savedInstanceState);  
  22.         setContentView(R.layout.activity_main);  
  23.         btnRead=(Button)super.findViewById(R.id.read);  
  24.           
  25.         //讀取資源文件  
  26.         btnRead.setOnClickListener(new OnClickListener(){  
  27.             public void onClick(View v)  
  28.             {  
  29.                 //獲取資源對象  
  30.                 Resources res=MainActivity.this.getResources();           
  31.                 //通過openRawResource()讀取資源為R.raw.friend的資源文件,結果返回到InputStream  
  32.                 InputStream input=res.openRawResource(R.raw.friend);      
  33.                 //讀取資源文件內容  
  34.                 Scanner scan=new Scanner(input);  
  35.                 StringBuffer info=new StringBuffer();  
  36.                 while(scan.hasNext())  
  37.                     info.append(scan.next()).append("\n");  
  38.                 scan.close();  
  39.                   
  40.                 try {  
  41.                     input.close();  
  42.                 } catch (IOException e) {  
  43.                     e.printStackTrace();  
  44.                 }  
  45.                   
  46.                 Toast.makeText(getApplicationContext(), info.toString(),Toast.LENGTH_LONG).show();  
  47.             }  
  48.         });  
  49.           
  50.     }  
  51. }  


三、資源文件

  我們把文件friend.txt保存到res/raw文件夾中。

  注意:raw文件不存在,需要你手動創建。

  \

四、運行結果

  \

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