Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android C 語言讀取系統屬性

Android C 語言讀取系統屬性

編輯:關於Android編程

用 Qt Creator 寫一個 Android 程序,需要讀取 DNS 。C 語言怎麼讀呢,研究了一下,原來在 Android 的 C 庫裡,就有讀取系統屬性的方法。用 objdump 看了一下 libc.so ,找到了其中的函數。如下:

000095f0 g     F .text	00000014 __system_properties_init
00009604 g     F .text	00000014 __system_property_find
00009618 g     F .text	00000014 __system_property_find_nth
0000962c g     F .text	00000014 __system_property_get
00009640 g     F .text	00000014 __system_property_read
00009654 g     F .text	00000014 __system_property_wait

頭文件是 system_properties.h ,在 usr/include/sys目錄下面。

__system_property_get 可以用來獲取一個屬性值,函數原型如下:

/* Look up a system property by name, copying its value and a
** \0 terminator to the provided pointer.  The total bytes
** copied will be no greater than PROP_VALUE_MAX.  Returns
** the string length of the value.  A property that is not
** defined is identical to a property with a length 0 value.
*/
int __system_property_get(const char *name, char *value);

讀取 DNS 的代碼如下:

char buf[PROP_VALUE_MAX];
__system_property_get("net.dns1", buf);
__system_property_get("net.dns2", buf);

讀取其他屬性類似,設置的話可以查看 system_properties.h 看函數用法。


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