额。。。这几天晚上都有事所以都没怎么学习,真是罪过啊,罪过。。这个是接着上一篇的结尾处的内容继续的:对url处理 parse_str(string str):将字符串解析到变量中,例如 parse_str("a=2&b=4&c=5"); echo $a."-----"; ...
分类:
其他好文 时间:
2014-07-07 20:47:07
阅读次数:
287
简单介绍Fastjson是一个Java语言编写的高性能功能完好的JSON库。高性能fastjson採用独创的算法,将parse的速度提升到极致,超过全部json库,包含以前号称最快的jackson。而且还超越了google的二进制协议protocol buf。支持标准Fastjson全然支持http...
分类:
Web程序 时间:
2014-07-07 13:34:06
阅读次数:
285
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:Failure executing javac, but could not parse the error:**.jar时出错; error in...
分类:
系统相关 时间:
2014-07-02 18:42:16
阅读次数:
276
man是自定义的对象,使用var tim = JSON.stringify(man); var newman=JSON.parse(tim)后newman的类型是“object”并不是一个Man,怎么才能变回一个Man呢?
function Man() {
this._type = "man";
this.name="";
this.run = function () {...
分类:
编程语言 时间:
2014-07-02 09:51:34
阅读次数:
187
方法一:function getExt($url){ $urlinfo = parse_url($url); $file = basename($urlinfo['path']); if(strpos($file,'.') !== false) { $ext = explode('....
分类:
Web程序 时间:
2014-07-01 19:09:47
阅读次数:
1274
scrapy spider的parse方法可以返回两种值:BaseItem,或者Request。通过Request可以实现递归搜索。
如果要抓取的数据在当前页,可以直接解析返回item(代码中带**注释的行直接改为yield item);
如果要抓取的数据在当前页指向的页面,则返回Request并指定parse_item作为callback;
如果要抓取的数据当前页有一部分,指向的页面有一部分(比如博客或论坛,当前页有标题、摘要和url,详情页面有完整内容)这种情况需要用Request的meta参数把...
分类:
Web程序 时间:
2014-06-27 09:46:13
阅读次数:
333
今天测试播放视频的时候,发现在诺基亚XL机型里不能弹出视频应用列表。我的代码是:Intent intent = new Intent(Intent.ACTION_VIEW);intent.setDataAndType(Uri.parse(videoPath), "video/mp4");startA...
分类:
移动开发 时间:
2014-06-26 21:25:45
阅读次数:
248
(1)页面下载过程要干的事情页面parse完毕----DOMContentLoaded(DOM树建立完毕)----onload(全部资源下完,图片,iframe,flash这些)注意js脚本要下载并执行完毕,dom树才能出来,因为script标签也属dom的一部分,同时因为js也许有dom的操作,所...
分类:
Web程序 时间:
2014-06-25 16:51:07
阅读次数:
219
int i=0; try { i = Int16.Parse(txt_num.Text); } catch { } TextBox _txt;//创建text对象 if (i > 0) { for (int _i = 0; _i < i; _i++) { _txt = new TextBox();....
分类:
Web程序 时间:
2014-06-25 14:42:02
阅读次数:
227
pasting 1,调web浏览器 Uri myBlogUri = Uri.parse("http://xxxxx.com"); returnIt = new Intent(Intent.ACTION_VIEW, myBlogUri); //调用内置浏览器Uri u = Uri.parse(resu...
分类:
移动开发 时间:
2014-06-24 14:58:08
阅读次数:
272