- 博客(0)
- 资源 (19)
- 收藏
- 关注
XMPP消息推送Demo【服务器+客户端】
包含两个压缩文件:
一、androidpn-server-0.5.0-bin.zip
二、androidpn-client-0.5.0.zip
模拟器测试与真机测试都OK,请放心下载使用。
2013-02-05
stl库手册_c++.rar
用来查找算法
如
istream::read
// read a file into memory
#include
#include
using namespace std;
int main () {
int length;
char * buffer;
ifstream is;
is.open ("test.txt", ios::binary );
// get length of file:
is.seekg (0, ios::end);
length = is.tellg();
is.seekg (0, ios::beg);
// allocate memory:
buffer = new char [length];
// read data as a block:
is.read (buffer,length);
is.close();
cout.write (buffer,length);
delete[] buffer;
return 0;
2021-04-16
Android平台的即时通讯软件实现(服务器+客户端)
Android平台的即时通讯软件实现,使用Socket进行通讯,利用PC作为服务器作为消息转发的平台,若好友在线,服务器则直接将消息转发给好友;若好友离线,服务器会将该消息暂存在服务器端,当消息的接收者登陆到系统后,再将该离线消息发给接收者
2013-02-05
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅