Processing Bitmaps Off the UI Thread 非UI线程加载图片BitmapFactory.decode*一系列方法,在之前的高效加载大图的文章中讲到过。
如果图片的数据源是磁盘,或则网络(内存以外的其他地方),那么解析图片的方法不应该在UI线程中执行。这些数据加载任务所要花费的时间有许多不可控因素,(例如:磁盘读取速度,图片的大小,CPU的频率,等等)如果这些任务阻塞...
分类:
编程语言 时间:
2015-05-31 16:55:09
阅读次数:
124
简单记录几点,以备后忘:1、python中的默认编码方式为asciiIn[1]:importsys
In[2]:sys.getdefaultencoding()
Out[2]:‘ascii‘2、设置python中的默认编码方式In[1]:importsys
In[2]:reload(sys)
<module‘sys‘(built-in)>
In[3]:sys.setdefaultencoding(‘utf-8‘)
In[4]:sys..
分类:
编程语言 时间:
2015-05-31 06:57:41
阅读次数:
201
简单记录几点,以备后忘:1、python中的默认编码方式为asciiIn[1]:importsys
In[2]:sys.getdefaultencoding()
Out[2]:‘ascii‘2、设置python中的默认编码方式In[1]:importsys
In[2]:reload(sys)
<module‘sys‘(built-in)>
In[3]:sys.setdefaultencoding(‘utf-8‘)
In[4]:sys..
分类:
编程语言 时间:
2015-05-31 06:56:14
阅读次数:
147
PHP JSON本章节我们将为大家介绍如何使用 PHP 语言来编码和解码 JSON 对象。环境配置在 php5.2.0 及以上版本已经内置 JSON 扩展。JSON 函数函数描述json_encode对变量进行 JSON 编码json_decode对 JSON 格式的字符串进行解码,转换为 PHP ...
分类:
Web程序 时间:
2015-05-30 23:50:00
阅读次数:
209
安装XML Parser 函数是 PHP 核心的组成部分。无需安装即可使用这些函数。PHP XML Parser 函数PHP:指示支持该函数的最早的 PHP 版本。函数描述PHPutf8_decode()把 UTF-8 字符串解码为 ISO-8859-1。3utf8_encode()把 ISO-88...
分类:
Web程序 时间:
2015-05-29 17:33:03
阅读次数:
164
知识在于总结,那就记下了吧!例如后台 html 字符串是var htmlStr="后台html字符串";转码var html格式代码=decodeHtml(htmlStr);只需调用下面这个js方法就行了 function decodeHtml(s) { var HTML_DECODE...
分类:
Web程序 时间:
2015-05-29 15:19:57
阅读次数:
419
快速减肥的5个方法Five ways of losing weight quicklyFive ways of losing weight quickly快速减肥的5个方法Do you want to lose weight? One of the easiest ways to lose weig...
分类:
其他好文 时间:
2015-05-28 19:42:44
阅读次数:
139
使用Zint和Zxing实现二维码的编码与解码(Using open-source tools to generate and decode Q-R code)1.Zint生成二维码http://sourceforge.net/projects/zint/【1】从上述站点下载Zint工具【2】安装Z...
分类:
Web程序 时间:
2015-05-28 16:05:47
阅读次数:
205
<?php
$base64?=?file_get_contents("php://input");?//获取输入流
$base64?=?json_decode($base64,1);
$data?=?$base64[‘base64‘];
preg_match("/data:image\/(.*);base64,/",$data,$res);
$ext?=?$re...
分类:
Web程序 时间:
2015-05-28 11:06:13
阅读次数:
231
基于open source开源库,介绍了几种主流的Q-R Code编码与解码技术!使用JRuby,C#进行了实验。
分类:
其他好文 时间:
2015-05-28 09:26:39
阅读次数:
930