Chinaunix首页 | 论坛 | 博客
  • 博客访问: 226124
  • 博文数量: 75
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 848
  • 用 户 组: 普通用户
  • 注册时间: 2013-10-08 10:27
文章分类
文章存档

2014年(9)

2013年(66)

我的朋友

分类: C/C++

2014-01-03 16:51:46

    用 Qt Creator 写一个 Android 程序,需要读取 DNS 。C 语言怎么读呢,研究了一下,原来在 Android 的 C 库里,就有读取系统属性的方法。用 objdump 看了一下 libc.so ,找到了其中的函数。如下:


[cpp] view plaincopy
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 可以用来获取一个属性值,函数原型如下:


[cpp] view plaincopy
/* 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 的代码如下:
[cpp] view plaincopy
char buf[PROP_VALUE_MAX];  
__system_property_get("net.dns1", buf);  
__system_property_get("net.dns2", buf);  


    读取其他属性类似,设置的话可以查看 system_properties.h 看函数用法。
阅读(1580) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~