基于TCP-服务器1、创建一个socket,2、绑定IP地址、端口等信息到socket上,用函数bind()3、设置允许的最大连接数,用函数listen()。4、等待来自客户端的连接请求,用accept()5、收发数据,用函数send()和recv(),或者read()和write()6、关闭网络连...
分类:
系统相关 时间:
2014-07-18 16:11:39
阅读次数:
274
static 表示类所有---------------->值是可以改的,为类所有readonly表示只读的变量--------->值不可改,实例化访问const表示只读常量,为类所有----->值不可改,为类所有static (为类所有) readonly(值不可改)-----------...
分类:
其他好文 时间:
2014-07-18 15:24:41
阅读次数:
159
在配置中加上location ~ .*\.(php|php5)?$ {fastcgi_pass 127.0.0.1:9000;fastcgi_read_timeout 700;fastcgi_index index.php;include fastcgi.conf;}
分类:
Web程序 时间:
2014-07-18 15:17:43
阅读次数:
335
注意:第一步要先添加权限:<uses-permissionandroid:name="android.permission.READ_EXTERNAL_STORAGE"/><uses-permissionandroid:name="android.permission.WRITE_EXTERNAL_STORAGE"/>步骤:文件流1、写:a)创建文件输出流(PATH)b)将内容写入文件输出流(str...
分类:
其他好文 时间:
2014-07-18 13:14:00
阅读次数:
228
Faced with the upcoming exam, Some useful methods referred to file operation drew tremenous attention. Now I make a summary to reading file.
import java.io.BufferedReader;
import java.io.BufferedWri...
分类:
其他好文 时间:
2014-07-18 12:26:25
阅读次数:
274
Palindrome
Time Limit: 3000MS
Memory Limit: 65536K
Total Submissions: 51913
Accepted: 17877
Description
A palindrome is a symmetrical string, that is, a string read ide...
分类:
其他好文 时间:
2014-07-18 12:21:25
阅读次数:
207
Description
Your task is to read a picture of a chessboard position and print it in the chess notation.
Input
The input consists of an ASCII-art picture of a chessboard with chess pieces on positio...
分类:
其他好文 时间:
2014-07-18 11:03:28
阅读次数:
305
http://www.cnblogs.com/lovebread/archive/2009/12/24/1631108.html[Python]读写文件方法http://www.cnblogs.com/xuxn/archive/2011/07/27/read-a-file-with-python.h...
分类:
编程语言 时间:
2014-07-18 09:34:22
阅读次数:
240
我下载的是voc-release51.按照这篇文章,都操作了一遍:http://blog.csdn.net/pozen/article/details/7023742#quote2.运行demo不成功 继续按照http://cfanz.cn/index.php?c=article&a=read&id...
#define EV_TIMER_RESOLUTION 1 /* 1 msec */#define EV_READ_EVENT EPOLLIN#define EV_WRITE_EVENT EPOLLOUTstruct ev_event;struct ev_timer;typedef void ...
分类:
其他好文 时间:
2014-07-17 22:37:16
阅读次数:
276