举个栗子,首先创建网络会话, 然后就可以用创建的session来访问网页了。 session.get(URL) ...
分类:
编程语言 时间:
2016-04-03 21:57:47
阅读次数:
150
MVVM : The MVVM Light Messenger In-Depth MvvmLight框架使用入门(一) WPF新手实践1:MVVM Light Toolkit(一、下载与安装) 关于 MVVMLight 设计模式系列 MVVM之MVVMLight,一个登录注销过程的简单模拟 mvmv ...
分类:
其他好文 时间:
2016-04-01 23:33:02
阅读次数:
221
一直在测试客户端的EXTJS,但遇到服务器端就麻烦了,要建库,要写JSON,要有HTTP返回值。 今天测试了一个简单的方法,经过测试是OK了。 那,就是Python的SimpleHTTPServer模块作个简单的WEB服务器,然后,需要返回的值直接写个HTML即可啦。 指定目录的启动命令: 如果要测 ...
分类:
Web程序 时间:
2016-03-26 14:02:57
阅读次数:
147
#include<iostream>
#include<assert.h>
#include<malloc.h>
#defineCAPACITY3
usingnamespacestd;
classString
{
public:
String(char*str="")
:_str((char*)malloc(strlen(str)+1)),
_size(strlen(str))
{
strcpy(_str,str);
_capacity=_size+1;..
分类:
其他好文 时间:
2016-03-11 22:32:35
阅读次数:
183
题意:就是给你两副扑克,然后一张盖一张洗牌,不断重复这个过程,看能不能达到目标的扑克顺序 分析:然后就模拟下,-1的情况就是有循环节 #include<cstdio> #include<algorithm> #include<iostream> #include<cstring> #include<
分类:
其他好文 时间:
2016-01-28 13:47:22
阅读次数:
131
原文:http://www.cnblogs.com/xdp-gacl/p/4101727.html
分类:
编程语言 时间:
2016-01-28 00:47:54
阅读次数:
418
一.ImageView实现旋转小动画注意:参数为弧度,不要忘记除数加.0[UIViewanimateWithDuration:0.3animations:^{ self.addImageView.transform=CGAffineTransformMakeRotation(45/180.0*M.....
分类:
其他好文 时间:
2016-01-22 13:28:01
阅读次数:
131
UITabBarController是IOS中很常用的一个viewController。UITabBarController通常作为整个程序的rootViewController,而且不能添加到别的container viewController中.一.创建最常见的创建UITabBarControl...
分类:
其他好文 时间:
2016-01-21 23:06:54
阅读次数:
202
一.ImageView实现旋转小动画注意:参数为弧度,不要忘记除数加.0[UIViewanimateWithDuration:0.3animations:^{ self.addImageView.transform=CGAffineTransformMakeRotation(45/180.0*M.....
分类:
其他好文 时间:
2016-01-21 22:55:49
阅读次数:
176