用 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 看函數用法。