上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 40 下一页
摘要: 虚拟主机 (Virtual Host)是在同一台机器搭建属于不同域名或者基于不同 IP 的多个网站服务的技术. 可以为运行在同一物理机器上的各个网站指配不同的 IP 和端口, 也可让多个网站拥有不同的域名.Apache 是世界上使用最广的 Web 服务器, 从 1.1 版开始支持虚拟主机. 本文将讲... 阅读全文
posted @ 2014-10-24 07:58 wuhn 阅读(244) 评论(0) 推荐(0) 编辑
摘要: Spring-framework source codegit url: git clone git://github.com/SpringSource/spring-framework.git导入IDERun ./import-into-eclipse.sh or read import-into... 阅读全文
posted @ 2014-10-24 03:08 wuhn 阅读(568) 评论(0) 推荐(0) 编辑
摘要: /** * Take a String which is a delimited list and convert it to a String array. * A single delimiter can consists of more than one charact... 阅读全文
posted @ 2014-10-24 03:01 wuhn 阅读(1680) 评论(0) 推荐(0) 编辑
摘要: In Java, you can use StringTokennizer class to split a String into different tokenas by defined delimiter.(space is the default delimiter). Here’re tw... 阅读全文
posted @ 2014-10-24 02:56 wuhn 阅读(515) 评论(0) 推荐(0) 编辑
摘要: /** * Delete any character in a given String. * @param inString the original String * @param charsToDelete a set of characters to dele... 阅读全文
posted @ 2014-10-24 02:09 wuhn 阅读(4004) 评论(0) 推荐(0) 编辑
摘要: 版本号:Python2.7.5,Python3改动较大。所谓网页抓取,就是把URL地址中指定的网络资源从网络流中读取出来,保存到本地。类似于使用程序模拟IE浏览器的功能,把URL作为HTTP请求的内容发送到服务器端, 然后读取服务器端的响应资源。在Python中,我们使用urllib2这个组件来抓取... 阅读全文
posted @ 2014-10-23 23:59 wuhn 阅读(1549) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-10-23 23:58 wuhn 阅读(3693) 评论(0) 推荐(0) 编辑
摘要: A uniform resource identifier (URI) is a uniform resource locator(定位器,探测器) (URL), uniform resource name (URN), or both.Incomputing, auniform resource ... 阅读全文
posted @ 2014-10-23 22:54 wuhn 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 一、网络爬虫的定义网络爬虫,即Web Spider,是一个很形象的名字。把互联网比喻成一个蜘蛛网,那么Spider就是在网上爬来爬去的蜘蛛。网络蜘蛛是通过网页的链接地址来寻找网页的。从网站某一个页面(通常是首页)开始,读取网页的内容,找到在网页中的其它链接地址,然后通过这些链接地址寻找下一个网页,这... 阅读全文
posted @ 2014-10-23 22:38 wuhn 阅读(1793) 评论(0) 推荐(0) 编辑
摘要: CCSize size = CCDirector::sharedDirector()->getWinSize(); CCSprite *bg = CCSprite::create("HelloWorld.png"); bg->setPosition(ccp(size.width/... 阅读全文
posted @ 2014-10-23 22:00 wuhn 阅读(293) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 40 下一页