//前台中文传递(encodeURI要编码两次) 测试 后台接收之后的代码操作 System.out.println(title); //%E6%88%91%E7%9A%84 String encode = URLDecoder.decode(title, "UTF-8"); System.out....
分类:
其他好文 时间:
2015-10-09 18:18:18
阅读次数:
175
1,AttributeError: ‘str‘ object has no attribute ‘decode‘,: decode????????????? encode bytes ------> str(unicode)------>bytes decode的目标要死bytes! 2,UnicodeDecodeError: ‘utf-8‘ c...
分类:
编程语言 时间:
2015-10-08 20:13:17
阅读次数:
542
原文链接:http://mangguo.org/php-string-encoding-convert-and-detect/GBK 和 UTF-8 编码的转换是一个非常恶心的事情,比如像 PHP 中的 json_encode 本身根本不支持 GBK 形式的编码。有两个库函数能够支持编码的转换,通常...
分类:
Web程序 时间:
2015-10-07 00:52:54
阅读次数:
240
有的时候我们为了传参数的URL比较安全,我们一般会用json加密的方法来使自己的URL安全。$a['order_sn'] = $orderNo;$data = json_encode( $a);$data = urlencode($data);$url = url. '?data_json=' . ...
分类:
Web程序 时间:
2015-10-06 11:42:11
阅读次数:
500
对于以下对象$foo = array( "bar1" => array(), "bar2" => array() );我想转换成{ "bar1": {}, "bar2": []}默认情况下用json_encode($foo)得到的是{ "bar1": [], "bar2": []}而加...
分类:
编程语言 时间:
2015-09-30 11:02:21
阅读次数:
8467
转自:http://www.cnblogs.com/evening/archive/2012/04/19/2457440.html字符串编码常用类型:utf-8,gb2312,cp936,gbk等。python中,我们使用decode()和encode()来进行解码和编码在python中,使用uni...
分类:
编程语言 时间:
2015-09-29 16:53:48
阅读次数:
250
json_decode对JSON格式的字符串进行编码而json_encode对变量进行 JSON 编码,需要的朋友可以参考下1.json_decode() json_decode (PHP 5 >= 5.2.0, PECL json >= 1.2.0) json_decode — 对 JSON 格式...
分类:
Web程序 时间:
2015-09-29 12:59:41
阅读次数:
234
1. base64 的解密函数select utl_raw.cast_to_varchar2(utl_encode.base64_decode(utl_raw.cast_to_raw('dGVzdA=='))) from dual2. base64 的加密函数select utl_raw.cast_...
分类:
数据库 时间:
2015-09-28 18:52:59
阅读次数:
218
如果你从服务器获得的数据为nil ,数据格式GBK,但是你使用UTF-8 编码格式,你需要转换即可显示1 unsigned long encode = CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingGB_18030_2000)....
分类:
其他好文 时间:
2015-09-28 16:02:11
阅读次数:
204
直接上代码:#encode:u8import res1 = 'adkkdk'#判断s1字符串是否负责都为小写的正则an = re.search('^[a-z]+$', s1)if an: print 'yes'else: print 'no'
分类:
编程语言 时间:
2015-09-24 12:44:02
阅读次数:
189