本文演示,TCP使用Socket进行网络文件传送,实现将客户端的文件upload.txt上传到服务器。
1)客户端,上传文件upload.txt,并接受服务器反馈上传成功与否消息。
2)服务器,接受客户端文件,将接收到的文件命名为Rece.txt,同时给客户端发送消息“上传成功”。...
分类:
编程语言 时间:
2014-09-16 23:47:11
阅读次数:
368
计算机数据库中的视图是一个虚拟表,其中内容有查询定义。同真实的表一样,视图包含一系列带有名称的列和行数据。但是,视图并不在数据库中与存储的数据值集形式存在,行和列数据来自由定义视图的查询所引用的表,并且在引用视图时动态生成。...
分类:
Web程序 时间:
2014-09-16 23:47:01
阅读次数:
285
1 函数模板
template
T compare(const T & v1,const T &v2)
{
return ..
}
编译器承担了为每种类型编写函数的单调工作.
inline
template inline T min(const T&,const T&)
2 类模板
template
class Q{
T fun();
}...
分类:
编程语言 时间:
2014-09-16 23:46:41
阅读次数:
281
今天开发公司官网:http://www.zstime.com/,遇到一个问题,如何在nginx下设置pathInfo以及如何隐藏index.php
这里分别来讲解一下:
一、隐藏index.php
隐藏index.php需要修改nginx的配置文件,如果你是使用vhost的,需要修改如conf/vhost/你的文件名.conf
文件,整个文件如下
server {...
分类:
Web程序 时间:
2014-09-16 23:46:31
阅读次数:
305
虽然目前我们实际部署的openstack使用的是vlan模式,但它并不适合大规模云。...
分类:
其他好文 时间:
2014-09-16 23:46:21
阅读次数:
285
1 断开虚拟机添加一块硬盘
推荐scsi
2 查看新硬盘:
fdisk -l 包括u盘 软盘 硬盘
brave@ubuntu:~$ sudo fdisk -l
Disk /dev/sda: 42.9 GB, 42949672960 bytes
255 heads, 63 sectors/track, 5221 cylinders, total 838...
分类:
系统相关 时间:
2014-09-16 23:46:11
阅读次数:
435
题目链接
题意:给定一个矩阵的第0列的第1到n个数,第一行第1个数开始每个数分别为233, 2333........,求第n行的第m个数。
思路:将第一行的数全部右移一位,用前一列递推出下一列,构造矩阵,类似如下
1 0 0 0 0 0 0
1 10 0 0 0 0 0
0 1 1 0 0 0 0
0 1 1 1 0 0 0
0 1 1 1 1 0 0 ...
分类:
其他好文 时间:
2014-09-16 23:46:01
阅读次数:
222
定义和用法
indexOf()方法可返回某个指定的字符串值在字符串中首次出现的位置。
indexOf方法返回一个整数值,stringObject中的字符位置是从0开始的。如果没有找到子字符串,则返回 -1。...
分类:
Web程序 时间:
2014-09-16 23:45:51
阅读次数:
220
Color getRandColor(int fc,int bc){//给定范围获得随机颜色
Random random = new Random();
if(fc>255) fc=255;
if(bc>255) bc=255;
int r=fc+random.nextInt(bc-fc);
int g=fc...
分类:
其他好文 时间:
2014-09-16 23:45:31
阅读次数:
217
package com.example.clicktoreload;
import com.example.clicktoreload.ClickScreenToReload.Reload;
import android.os.Bundle;
import android.os.Handler;
import android.app.Activity;
import androi...
分类:
其他好文 时间:
2014-09-16 23:45:21
阅读次数:
246
http://acm.hdu.edu.cn/showproblem.php?pid=4472...
分类:
其他好文 时间:
2014-09-16 23:45:11
阅读次数:
183
//avl_tree.h
#include
using std::stack;
template
class AVL_TREE
{
public:
AVL_TREE(){
nil = new AVL_NODE(0, -1, NULL, NULL);
tree_root = nil;
}
bool find(const T &val) const;
void insert(co...
分类:
其他好文 时间:
2014-09-16 23:44:51
阅读次数:
272
用vc6.0来编译openssl所需要注意的问题...
实验室做FPGA开发时经常用到Verilog,代码规范成为一个问题,于是乎写了一个Perl脚本对代码进行规范化,主要是进行自动缩进和对齐。代码如下,初学Perl,请读者赐教:#####################################################
# 代码缩进对齐脚本
# 功能:对Verilog代码进行自动缩进和对齐处理,
# 该版本目前还没有对case语句进行...
分类:
其他好文 时间:
2014-09-16 23:44:31
阅读次数:
539
点击打开链接
SPFA + A*
#include
#include
#include
#include
using namespace std;
struct node {
int v, dis, f, next;
friend bool operator b.f;
}
};
const in...
分类:
其他好文 时间:
2014-09-16 23:44:21
阅读次数:
189
public class LockActivity extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setCont...
分类:
移动开发 时间:
2014-09-16 23:44:11
阅读次数:
308