详细讲解文件I/O中的打开、关闭、创建等函数...
分类:
系统相关 时间:
2014-05-11 05:45:07
阅读次数:
557
在APUE这本书,第三章与第四章都是在讲一些关于文件操作和目录操作的函数。简单地说明一下涉及到的函数及其使用。
open函数
原型为: #include
int open(const char *pathname, int oflag,.../*mode_t mode*/);
该函数是用来打开或创建一个文件(记住:是文件,不包括目录),第三个参数只有当打开文件不存在时...
分类:
其他好文 时间:
2014-05-11 04:46:16
阅读次数:
336
这三个命令的用途都是启动网络接口,不过,ifup与ifdown仅能就/etc/sysconfig/network-scripts内的ifcfg-ethX(X为数字)进行启动或关闭的操作,并不能直接修改网络参数,除非手动调整ifcfg-ethX文件才行。至于ifconfig则可以直接手动为某个接口配置IP或调整其网络参数。
1、ifconfig
ifconfig主要是可以手动启动、查看与修改网络...
分类:
其他好文 时间:
2014-05-11 03:35:12
阅读次数:
330
一、通过命令查看,也就是在上一篇文章中介绍的一个命令:ifconfig
示例一:
[root@desktop40 ~]# ifconfig
br0 Link encap:Ethernet HWaddr 00:0C:29:4E:5B:F2
inet addr:192.168.1.131 Bcast:192.168.1.255 Mask:255.255...
分类:
其他好文 时间:
2014-05-11 02:33:47
阅读次数:
459
InjectionInjection flaws, such as SQL, OS, and
LDAP injection, occur when untrusted data is sent to an interpreter as part of a
command or query. The ...
分类:
移动开发 时间:
2014-05-10 07:23:51
阅读次数:
460
server:CentOS5.8 ip:172.16.8.11
Gateway:172.16.8.1ip:10.120.6.78 Gateway:10.120.6.1网卡配置:eth0
point:[root@localhost ~]# cat /etc/sysconfig/network-scri...
分类:
系统相关 时间:
2014-05-10 06:50:23
阅读次数:
536
set conn=server.CreateObject("adodb.connection")
set rs=server.CreateObject("adodb.recordset")
cnpath="data source=" & server.MapPath("question.mdb")
conn.open "provider=microsoft.jet.oledb.4.0;...
分类:
其他好文 时间:
2014-05-10 04:59:38
阅读次数:
304
Pat1076代码
题目描述:
Weibo is known as the Chinese version of Twitter. One user on Weibo may have many followers, and may follow many other users as well. Hence a social network is formed with foll...
分类:
其他好文 时间:
2014-05-10 04:50:24
阅读次数:
403
关
组件:"Adodb.Stream"
有下列方法:
Cancel 方法
使用方法如下
Object.Cancel
说明:取消执行挂起的异步 Execute 或 Open 方法的调用。
Close 方法
使用方法如下
Object.Close
:关闭对像
CopyTo 方法
使用方法如下
Object.CopyTo(destStream,[Char...
分类:
数据库 时间:
2014-05-10 04:49:52
阅读次数:
370
一基本概念
该类恰是上文介绍的DatagramSocket的子类。
DatagramSocket只允许数据报发送给指定的目标地址,而MulticastSocket可以将数据报以广播的方式发送到多个客户端
若要使用多点广播,则需要让一个数据报标有一组目标主机地址,当数据报发出后,整个组的所有所有主机都能收到该数据报。IP多点广播(或多点发送)实现了将单一信息发送到多个接受者的...
分类:
编程语言 时间:
2014-05-10 03:46:16
阅读次数:
341