先不说如何实现,先来看看效果图: 读取远程的需要提供下远程的计算用户名和密码即可。 如何实现这个代码功能,请看如下代码部分: 实体类: using System; using System.Collections.Generic; using System.Linq; using System.Te
1 #include "stdafx.h" 2 #include "iostream" 3 #include "assert.h" 4 #include "string" 5 6 using namespace std; 7 8 char* mystrcat(char* dest, const ch
分类:
其他好文 时间:
2016-02-23 11:04:40
阅读次数:
128
1 #include "stdafx.h" 2 #include "iostream" 3 #include "assert.h" 4 5 using namespace std; 6 7 char* mystrcpy(char* dest, const char* src); // 1 const
分类:
其他好文 时间:
2016-02-23 11:04:40
阅读次数:
115
分享下项目里面自己封装的一个http下载类 功能如下: 1、支持断点续传 2、下载失败自动重试 3、超时等异常处理 using System; using System.Collections.Generic; using System.IO; using System.Net; public cl
参考如下链接: http://blog.csdn.net/hguisu/article/details/7776068 #include <iostream> #include <memory.h> using namespace std; void print(int a[], int n){ f
分类:
编程语言 时间:
2016-02-22 16:50:45
阅读次数:
216
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Text; using System.IO; using System.Drawing; using S
分类:
其他好文 时间:
2016-02-22 16:45:03
阅读次数:
270
If you’re using Object Relational Mapping frameworks like Hibernate, and are using the bi-directional mappings then you can be sure of getting the fol
分类:
Web程序 时间:
2016-02-22 16:39:01
阅读次数:
172
转载请注明来源地址:http://www.cnblogs.com/dongxiao-yang/p/5206631.html We recommend using multiple drives to get good throughput and not sharing the same drive
分类:
其他好文 时间:
2016-02-22 15:48:44
阅读次数:
202
记忆化数组记录从这个点的最长下降序列,然后乘以这个点的度,就是ans,维护即可。 #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int maxn = 1e5+10; const
分类:
其他好文 时间:
2016-02-22 15:22:25
阅读次数:
127