设置http响应头 response.setHeader 读取文件 这里需要注意两点: 读取的文件路径,必须设置为绝对路径 若文件名为中文,需要设置编码格式:URLEncoder.encode(filename, "utf-8") 向response中写入数据流
分类:
Web程序 时间:
2015-04-29 16:34:48
阅读次数:
121
key words: motion estimation and compensation , motion analysis,video encode
今天突然有这样的想法:我的研究方向是计算机视觉,但是我这一年来研究的都是在静态场景中,去理解分析,包括opencv处理图像,pcl处理点云,都是静态的,,还没有正经的去处理过动态的,也就是从视频中直接获取想要处理的内容,比如目标检测与跟踪...
分类:
其他好文 时间:
2015-04-28 23:00:41
阅读次数:
193
我们知道,Razor语法中我们可以直接使用@if(){}等代码段,这使得.net程序员在写模版时更容易了.对比如下:语法名称Razor语法WebForms等效语法代码块(服务端)@{intx=123;stringy="test.";}表达式encode:@model.Messageno encode...
分类:
Web程序 时间:
2015-04-28 08:15:47
阅读次数:
191
后台使用URLEncoder.encode("中文", "UTF-8"); tomcat配置URIEncoding="UTF-8"
分类:
其他好文 时间:
2015-04-27 18:36:32
阅读次数:
153
1 import urllib22 url = u"http://www.baidu.com/wd=测试"3 urllib2.urlopen(url.encode('utf-8')).read()对url进行encode编码
分类:
Web程序 时间:
2015-04-26 15:04:13
阅读次数:
149
最近被各种 encode 和 decode 算法虐得很晕,总结一下,但愿有通解😫No.1Compress a string to remove duplicates when a character occurs +2 times continuously.e.g.input : "12 abbb...
分类:
Web程序 时间:
2015-04-26 07:02:33
阅读次数:
205
搭建一个apache服务器,用php编写一个返回给客户端请求数据的脚本 1 $result); 7 $json=json_encode($arr); 8 echo $json; 9 }10 ?>该php实现了接收一个客户端的远程post或者get请求,然后返回...
分类:
编程语言 时间:
2015-04-25 12:05:38
阅读次数:
12920
记一下,备忘。Python 使用unicode,所以无论encode还是decode都是针对unicode来说的。encode:把unicode转为其他编码(gbk、utf8、gb2312等)。decode:把其他编码转为unicode码。比如字符串a为gb2312,想转为utf8:a.decode...
分类:
编程语言 时间:
2015-04-24 16:03:02
阅读次数:
107
/* hash.js */ var crypto = require('crypto');module.exports = function(){ this.encode = function(){ var algorithm = arguments[0] ? arguments[0] ...
分类:
其他好文 时间:
2015-04-22 23:38:12
阅读次数:
199
json格式中文解码查询
这里有一坑,mysql 在查询的时候自动将'\' 做特殊字符处理了
需要四个 \\\\ 进行转换转义
$username = json_encode($username);
$username = str_replace('\\','\\\\\\\\',trim($username, '"'));
$where = $where . ' and wb_bp_user...
分类:
Web程序 时间:
2015-04-22 22:15:49
阅读次数:
215