登录
首页 » C# » WebQQ 接口 以及测试项目 附完整源码

WebQQ 接口 以及测试项目 附完整源码

于 2013-04-08 发布
0 165
下载积分: 1 下载次数: 0

代码说明:

webqq接口实例,含测试项目

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • TimeCorrection
    这个小程序比较实用,可以让你的电脑时间同步世界服务器提供的时间,这可是比较准确的时间哦!源代码在VC6.0下编译通过,程序不管是从学习角度还是使用角度都不错,点一下鼠标你的电脑时间就会自动更正至世界时间。右侧的列表内显示的是提供时间服务的服务器域名,当然你还可以收集更多的时间服务器地址,加入到列表中(This little program is more practical, you can synchronize your computer time world time server, this is the more accurate the time Oh! VC6.0 to compile the source code through the program regardless of the angle from the learning point of view or are good to use, point the mouse to your computer time is automatically corrected to the world time. The list on the right shows the domain name server to provide time service, of course, you can collect more time server address, adding to the list )
    2010-11-25 16:15:07下载
    积分:1
  • APPLICATION-CLIENT-SERVER
    communication client server
    2013-03-31 17:38:59下载
    积分:1
  • UDPinstance
    一个VC++写的基于UDP的通信程序实例(VC++ to write a UDP-based communication program example)
    2010-05-13 13:32:53下载
    积分:1
  • Host_ip
    通过一个域名,可以得到这个域名的IP地址列表。(Through a domain name, domain names can be the IP address list.)
    2009-07-21 15:40:53下载
    积分:1
  • arpasdfasdf
    编写程序,实现基于ARP协议获取本局域网内全部活动主机MAC地址与IP地址对应关系列表,要求使用Winpcap,手动封装ARP数据包,并实现ARP响应数据包的接收和解析。(programming, ARP-based LAN access to the activities of all MAC address and IP address correspondence list, require the use of Winpcap, manual Packaging ARP packets, and achieve ARP response data packet reception and analysis.)
    2006-12-04 14:44:34下载
    积分:1
  • IPPackCap
    编制程序,监控网络,捕获一段时间内网络上的IP数据包,按IP数据包的源地址统计出该源地址在该时间段内发出的IP包的个数,将其写入日志文件中或用图形表示出来(建议用图形表示出统计结果)。(Program monitoring network, a period of time to capture IP data packets on the network, according to the source address of the IP packet statistics of the number of the source address is issued in the time of the IP package, written into the log file or graph out (that show the statistical results with graphics).)
    2021-01-11 17:18:49下载
    积分:1
  • C# Winform围棋(可对战)
    程序使用VS2015,.NET4.5,.NET 2.0以上都可以编译使用,无第三方组件,可生成32、64位。Socket网络传输,可以对战、旁观,围棋走棋规则基本全面,可直接对杀。围棋规则算法写代码太麻烦,直接参考了GreatVerveGo(是单机的)算法,感谢作者。程序包含客户端和服务端2各部分。图片文件在gooinDebugRes里面1、先启动服务端 goServer.exe服务端:地址为IPAddress[] addrIP = Dns.GetHostAddresses("192.168.0.104"); //ip地址端口51888,根据你的需要进行修改;进入服务端后点击“开始监听”。服务端定义://连接的用户System.Collections.Generic.List userList = new List();//监听端口private int port = 51888;//走棋判断int[] GameRoom = new int[255]; //房间号int[] GameUser = new int[255]; //房间人数;int[] GameStat = new int[255];  //走棋状态:1-等待、2-准备、3-开始、4-旁观int[] GameReday = new int[255]; //走棋准备状态//旁观 获得走棋信息string lookuser = "";2、打开客户端 goo.exe这里直接设置了进入到房间“0”,进入后显示“等待其他人加入”,先进房的执黑旗,按钮不可用;当有第2个人进入后,执白棋,按钮显示“准备”;双方都点击“准备”后,进入对局;后面再有人进入为旁观者,能看见双方对局信息。房间都是“0”。地址:client = new TcpClient("192.168.0.104", 51888); //定义服务器端ip地址和端口,与服务器端定义要一致根据你的需要进行修改;客户端定义:private int[,] Qpan = new int[24, 24]; //棋盘数组private string SendLook = null; //发送给旁观者的对局信息private const int Qz_Null = 0; //没有棋子private const int Qz_Black = 1; //黑子private const int Qz_White = 2; //白子private const int Max_Qpan = 23; //棋盘最大路数private int[,] TmpA_Qpan = new int[24, 24]; //临时存储棋盘private int[,] TmpB_Qpan = new int[24, 24];//临时存储棋盘private int[,] Tmp_Qpan = new int[24, 24];//临时存储棋盘private int Current_Go = 1; //当前棋子颜色private int Qpan_Count = 19; //当前棋盘路数private int Rame; //气数private int Die_Num; //死子数private bool _Attack = false; //是否打劫private int Attack_X = 0; //打劫位置private int Attack_Y = 0; //打劫位置private Panel g_Hei; //鼠标移动 黑块private Panel g_Bai; //鼠标移动 白块private Panel Fit_Hei; //最后落子标记 黑private Panel Fit_Bai; //最后落子标记 白private Panel[,] QzH = new Panel[20,20]; //黑棋子private Panel[,] QzB = new Panel[20,20]; //白棋子int LastFitX = 0; //给旁观最后落子位置int LastFitY = 0; //给旁观最后落子位置int LastHB = 0; //给旁观最后落子颜色Point Mouseoff; //鼠标位置bool go_play = false; //能否走棋int Select_Qzi = 0; //是黑还是白,1-黑,2-白int ReceiveHB =1; //接收到的棋子颜色函数://初始化棋盘、棋子private void InitQpan()//判断该谁走棋private void Judge_HB()//显示棋子private void ShowQz(int i, int j, int QzHB)//重置棋盘棋子private void Rest_Qpan()//备份棋盘棋子private void Qpan_Backup()//恢复棋盘棋子private void Qpan_Restore()//刷新棋盘棋子private void Qpan_Refresh(int QzHB)//计算棋子的气数底层函数private void Base_Calc(int i, int j, int QzHB)//计算气数private void Calc_Ream(int m, int n, int QzHB)//计算气数接口private void Calc_Interface(int QzHB)//落子处理,判断打劫、打n还1、吃掉对方棋子private void Falling(int xx, int yy)//设置打劫private void Set_Attack(int i, int j)//最后落子标记private void Fit_Flag(int xx, int yy)//旁观者最后落子标记private void LookFit_Flag(int Qhb, int xx, int yy)//对方走棋显示在己方并判断打劫、打n还1、吃掉对方棋子private void Opp_Falling()3、跨线程调用封装在CrossThreadCall.cs4、时间有限,程序没有做计算胜负,没有做掉线处理。基本规则有了,其他的就是套接字变来变去,需要新功能自己添加。只是一个初学练习,更多初学资料到我的博客http://www.cnblogs.com/qiaoke/
    2017-03-12下载
    积分:1
  • 多功能聊天
    利用VC++6.0来实现一个类似QQ的聊天程序。本程序只实现添加好友,文字聊天,文件传输和语音聊天4大功能。(VC 6.0 to achieve a similar QQ chat program. This procedure will only add to achieve good friend, text chat, file transfer, and voice chat four major functions.)
    2020-06-26 08:00:02下载
    积分:1
  • Ping
    用C语言实现的ping 功能,经典实现,在VC下调试通过(Ping using C language functions implemented)
    2010-05-10 11:22:03下载
    积分:1
  • AutoUpdateV1.0
    自动更新。与需要更新文件放在同一目录,生成更新文件;客户端通过HTTP去请求更新文件,进行文件版本比对,选择需更新的文件进行下载。其中使用了NewLife框架代码,具体源码请移步至www.newlifex.com(Automatically updated. And the need to update the files in the same directory, generate update files client requests via HTTP to update files, file version than the right, select the file to be updated to download. Which uses the NewLife framework code, the specific source please venue to www.newlifex.com)
    2013-07-12 20:45:43下载
    积分:1
  • 696516资源总数
  • 106562会员总数
  • 4今日下载