jni 获得 android 系统属性

int __system_property_get(const char *name, char *value);
 
 
例子

char value[10];
__system_property_get(
"ro.build.version.sdk",value);
LOGE(
"%s", value);  

头文件 sys
/system_properties.h

  参考

http://groups.google.com/group/android-ndk/browse_thread/thread/af26c579adcb74db

http://mobilepearls.com/labs/native-android-api/

你可能感兴趣的:(android)