码迷,mamicode.com
首页 >  
搜索关键字:encode    ( 3054个结果
Python转码问题的解决方法:ignore,replace,xmlcharrefreplace
比如,若要将某个String对象s从gbk内码转换为UTF-8,可以如下操作 s.decode('gbk').encode('utf-8′) 可是,在实际开发中,我发现,这种办法经常会出现异常: UnicodeDecodeError: ‘gbk' codec can't decode bytes i...
分类:编程语言   时间:2015-08-07 07:00:26    阅读次数:333
Python: 在Unicode和普通字符串之间转换
Unicode字符串可以用多种方式编码为普通字符串, 依照你所选择的编码(encoding): Toggle line numbers 1 #将Unicode转换成普通的Python字符串:"编码(encode)" 2 unicodestring = u"Hello world" 3 u...
分类:编程语言   时间:2015-08-07 07:00:15    阅读次数:120
PHP -- json
PHP – jsonPHP – jsonhttp://jsonlint.com/ 判断 json 语法是否正确PHP到json$arr1 = array();$arr1['username'] = 'test';$arr1['age'] = 24;$jsonObj1 = json_encode($a...
分类:Web程序   时间:2015-08-06 22:11:55    阅读次数:123
MD5加密与验证
package com.study;import java.security.MessageDigest;import java.security.NoSuchAlgorithmException;public class Md5Test { public static String encode....
分类:其他好文   时间:2015-08-06 10:56:38    阅读次数:134
html mysql special character
function html_encode(str) { var s = ""; if (str.length == 0) return ""; s = str.replace(/&/g, "&"); s = s.replace(//g, ">"); ...
分类:数据库   时间:2015-08-02 16:34:39    阅读次数:146
UVa 297.Quadtrees【非二叉树之四分树】【7月31】
Quadtrees A quadtree is a representation format used to encode images. The fundamental idea behind the quadtree is that any image can be split into four quadrants. Each quadrant may again be split ...
分类:其他好文   时间:2015-07-31 18:37:19    阅读次数:137
php下载
生成迅雷下载链接$url = "http://www.xxx.com/xxx/test.jpg";echo "thunder://".base64_encode("AA".$url."ZZ");
分类:Web程序   时间:2015-07-31 14:27:56    阅读次数:108
PHP json_encode中日语问题
'4月以降、遺体の捜索活動が続けられてきたが');$sJSON = json_encode($s);var_dump($sJSON); // 会转换成16进制var_dump(json_decode($sJSON));$sJSON = json_encode($s, defined('JSON_UN...
分类:Web程序   时间:2015-07-30 10:58:51    阅读次数:130
python的str,unicode对象的encode和decode方法
python的str,unicode对象的encode和decode方法 python中的str对象其实就是"8-bit string" ,字节字符串,本质上类似java中的byte[]。 而python中的unicode对象应该才是等同于java中的String对象,或本质上是java的char[...
分类:编程语言   时间:2015-07-30 07:02:46    阅读次数:183
【Java】(1)Base64加密技术
1. Jdk /** * 使用jdk实现base64加密 */ public static void jdkBase64() { try { BASE64Encoder encoder = new BASE64Encoder(); String encode = encoder.encode(src.getBytes()); System.out.println...
分类:编程语言   时间:2015-07-28 23:17:29    阅读次数:190
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!