首页 > 代码库 > Android中Properties使用

Android中Properties使用

一、概述      

      properties文件是一种配置文件,主要用于表达配置信息,文件类型为*.properties,格式为文本文件,文件的内容是格式是"键=值"的格式,在properties
文件中,可以用"#"来作注释。

  例如:配置文件bruts.properties里面的内容为:

  #get
  #time 2014.08.04

  login=false
  ModuleNames=\u65B0\u95FB,\u70ED\u70B9,\u56FE\u7247,\u7B80\u8BAF,\u8BBE\u7F6E
  register=false
  ModuleIdsIds=14,16,17
  apkId=1
  bussesid=439

二、内容 

     Properties类的重要方法

     Properties 类存在于包 Java.util 中,该类继承自 Hashtable

  1. getProperty ( String  key) ,   用指定的键在此属性列表中搜索属性。也就是通过参数 key ,得到 key 所对应的 value。
  2. load ( InputStream  inStream) ,从输入流中读取属性列表(键和元素对)。通过对指定的文件(比如说上面的 test.properties 文件)进行装载来获取该文
        件中的所有键 - 值对。以供 getProperty ( String  key) 来搜索。
  3. setProperty ( String  key, String  value) ,调用 Hashtable 的方法 put 。他通过调用基类的put方法来设置 键 - 值对。 
  4. store ( OutputStream  out, String  comments) ,   以适合使用 load 方法加载到 Properties 表中的格式,将此 Properties 表中的属性列表(键和元素
        对)写入输出流。与 load 方法相反,该方法将键 - 值对写入到指定的文件中去。
  5. clear () ,清除所有装载的 键 - 值对。该方法在基类中提供。

 

三、理解 

  通过一段代码来理解该类的使用,读取bruts.properties文件中的内容。

 1 package com.example.androidprojecttest; 2  3 import java.io.InputStream; 4 import java.util.Properties; 5  6 import android.os.Bundle; 7 import android.os.Handler; 8 import android.os.Message; 9 import android.os.Messenger;10 import android.R.id;11 import android.R.integer;12 import android.R.string;13 import android.app.Activity;14 import android.content.Intent;15 import android.view.Menu;16 import android.view.View;17 import android.view.View.OnClickListener;18 import android.widget.Button;19 import android.widget.LinearLayout;20 import android.widget.TextView;21 22 public class MainActivity extends Activity {23 24     private TextView tView;25 26     private String age="";27     private String name="";28     private String sex="";29     @Override30     protected void onCreate(Bundle savedInstanceState) {31         super.onCreate(savedInstanceState);32         setContentView(R.layout.activity_main);33         tView = (TextView) findViewById(R.id.tv);34         35         try {36             Properties pro = new Properties();37             InputStream is = this.getAssets().open("bruts.properties");38             pro.load(is);39             name=(String)pro.get("name");40             age=(String)pro.get("age");41             sex=(String)pro.get("sex");42             43             is.close();44         } catch (Exception e) {45             e.printStackTrace();46         }47         48         tView.setText("name: "+name+"\nage: "+age+"\nsex: "+sex);49     }50 51 }

  

  bruts.properties文件中的内容:

      

 

  效果为: