Android命令行/c语言/java设置获取系统属性的方法

Android命令行/c语言/java设置获取系统属性的方法

date: 2013.07.09; modification:2013.07.09

目录:

  • 1 命令行(shell) properties设置和获取接口
  • 2 c/c++语言 properties设置和获取接口
  • 3 Java语言 properties设置和获取的接口
  • 4 参考资料

Android提供了一套系统参数设置和获取的方法,这些参数可以在android系统中静态或动态的设定和获取。

1 命令行(shell) properties设置和获取接口

getprop “key”

setprop "key" "value"

2 c/c++语言 properties设置和获取接口

代码定义在:

1
2
3
4
5
6
7
8
system /core/libcutils/properties.c
 
#define PROPERTY_KEY_MAX   32
#define PROPERTY_VALUE_MAX  92
 
int property_get( const char *key, char *value, const char *default_value);
int property_set( const char *key, const char *value);
int property_list( void (*propfn)( const char *key, const char *value, void *cookie), void *cookie);   

使用:

1
2
3
4
5
6
#include "cutils/properties.h"
 
char prop[PROPERTY_VALUE_MAX] = "000" ;
if (property_get( "prop_name" , prop, NULL) != 0) {
     ...
}

说明:

  • property_get返回值为get到的属性值的字符串长度.
  • prop_name为属性名.
  • prop为存放属性值字符串的地方.

3 Java语言 properties设置和获取的接口

frameworks/base/core/java/android/os/SystemProperties.java

1
2
3
4
5
6
7
8
9
public static final int PROP_NAME_MAX = 31 ;
public static final int PROP_VALUE_MAX = 91 ;
public static String get(String key) ;
public static String get(String key, String def) ;
public static int getInt(String key, int def) ;
public static long getLong(String key, long def) ;
public static boolean getBoolean(String key, boolean def) ;
public static void set(String key, String val) ;
public static void addChangeCallback(Runnable callback) ;

4 参考资料

你可能感兴趣的:(Android命令行/c语言/java设置获取系统属性的方法)