-
VC―网络与通信
VC―网络与通信-VC-networking and communications
- 2023-05-21 18:10:02下载
- 积分:1
-
800一线常见问题汇总 V2.0版
介绍交换机,路由器的一些型号和参数...
800一线常见问题汇总 V2.0版
介绍交换机,路由器的一些型号和参数-800 Frequently Asked Questions Summary of first-line version V2.0 Introduction switches, routers, a number of models and parameters
- 2022-02-02 02:01:41下载
- 积分:1
-
Live media server used to transfer mpeg or other video/audio media
Live media server used to transfer mpeg or other video/audio media
- 2023-07-22 03:15:04下载
- 积分:1
-
《PHP专业项目实例开发》源代码
《PHP专业项目实例开发》源代码-"PHP examples of professional development project" source code
- 2022-03-25 15:55:48下载
- 积分:1
-
用delphi5实现SOAP通信
用delphi5实现SOAP通信-using SOAP communications 3.0-5.0
- 2022-04-10 10:02:05下载
- 积分:1
-
学生网上考勤系统
jsp源码+mysql数据库
记录学生到课情况的好软件,非常适合在校老师使用,请大家来下载...
学生网上考勤系统
jsp源码+mysql数据库
记录学生到课情况的好软件,非常适合在校老师使用,请大家来下载-students online attendance system jsp source mysql database records of students to classes and the good software is very suitable for teachers to use in school, please download
- 2022-02-15 23:22:09下载
- 积分:1
-
ssh3框架集成项目
开发工具:eclipse
环境:jdk1.7以上
功能描述:这个框架集成了struts2 spring hibernate3 前端用的是easyui 数据库是oracle,这个demo实现了简单的权限管理,菜单配给及相应的业务逻辑(实现了增删改查),业务模块实现了邮件的发送,会对一定条件的信息进行邮件发送,并且调用了websocket接口,请大神们指正,谢谢!
- 2022-06-15 21:21:52下载
- 积分:1
-
简单的网也设计,也算不错
简单的网也设计,也算不错-simple network design are also quite good
- 2023-04-08 01:10:03下载
- 积分:1
-
网站管理系统,介绍网页制作,运用下载上传等功能.
网站管理系统,介绍网页制作,运用下载上传等功能.-website management systems, web site production, use downloaded upload function.
- 2022-03-23 03:27:17下载
- 积分:1
-
QT获取网络时间
基本过程如下:
1. 利用ntp服务器获取网络时间
QUdpSocket udp_sock;
udp_sock.connectToHost("time.windows.com",123);
2. 阻塞等待连接成功
if(udp_sock.waitForConnected(60000))
{
...
}
3. 发送时间请求
udp_sock.write(time_req);
udp_sock.flush();
4. 阻塞等待消息返回
if(udp_sock.waitForReadyRead(120000))
{
...
}
说明:此过程等待时间可能较长,出现连接失败的情况也比较常见。
- 2022-03-21 22:20:09下载
- 积分:1