回顾 上一篇请移步:zrender源码分析1:总体结构 本篇进行ZRender的MVC结构中的M进行分析 总体理解上篇说到,Storage负责MVC层中的Model,也就是模型,对于zrender来说,这个model就是shape对象,在1.x表现的还不强烈,到了2.x, ...
分类:
其他好文 时间:
2014-09-01 12:14:23
阅读次数:
357
所谓的外部存储External Storage就是将数据文件保存在SD卡上。
1.但是在保存数据时需要先对SD卡的状态进行判断。
使用Environment.getExternalStorageState()可以SD卡的运行状态
分别有一下的状态
MEDIA_UNKNOWN, MEDIA_REMOVED, MEDIA_UNMOUNTED, MEDIA_CHECKING, MEDIA_NOF...
分类:
移动开发 时间:
2014-08-29 18:20:48
阅读次数:
265
修改my.cnf[mysqld]后加入default-storage-engine=InnoDB后否启动mysql时会遇到下述错误:[ERROR]Plugin‘InnoDB‘initfunctionreturnederror.[ERROR]Plugin‘InnoDB‘registrationasaSTORAGEENGINEfailed.[ERROR]Unknown/unsupportedtabletype:InnoDB[ERROR]Aborting删除mysql,da..
分类:
数据库 时间:
2014-08-29 16:14:58
阅读次数:
334
amazon s3 全称为 亚马逊简易存储服务(Amazon Simple Storage Service) 简单的说就是个网上存文件的服务器,可以把自己文件放上去,然后通过它开放的api来进行管理。官方网站是http://aws.amazon.com/cn/s3/在s3上面有一个bucket,我的...
分类:
编程语言 时间:
2014-08-29 12:39:47
阅读次数:
272
Call openFileOutput() with
the name of the file and the operating mode. This returns a FileOutputStream.通过 openFileOutput()建立FileoutputStream对象Write to the file with write().创建Write对象并进行数据读写操作Close ...
分类:
移动开发 时间:
2014-08-28 16:16:29
阅读次数:
328
Display d=getWindowManager().getDefaultDisplay();
int w=d.getWidth();
int h=d.getHeight();
DisplayMetrics metrics=new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetri...
分类:
移动开发 时间:
2014-08-28 11:31:29
阅读次数:
150
1. 独立存在的Font文件有三类:Type 1 FontTrueType FontOpenType FontType 1是由Adobe开发的,它是基于PostScript的Font,它通常由两个分开的文件来描述:1. Adobe Font Metrics[Adobe]/Printer Font M...
分类:
其他好文 时间:
2014-08-28 11:09:49
阅读次数:
254
在android中有五种保存数据的方法,分别是
Shared Preferences
Store private primitive data in key-value pairs.
对应属性的键值对属性文件存储
Internal Storage
Store private data on the device memory.
设备内存存储
External Storage
Store public data on the shared external storage.
外部存储器存储,如内存卡
SQLi...
分类:
移动开发 时间:
2014-08-27 23:31:38
阅读次数:
447
Web Storage是以Key-Value的形式进行数据持久性存储。Web Storage是为了克服由cookie带来的一些限制而产生的。当数据需要被严格控制在客户端上的时候,无须持续地将数据发回服务器。Web Storage的目标有两个:提供一种存储会话数据的路径;提供存储大量可以跨会话存在的数据的机制。...
分类:
Web程序 时间:
2014-08-27 20:35:08
阅读次数:
356
ActiveMQ中如果使用mysql innodb的同时,开启了binlog,那么在ack消息的时候,日志里就可会报错:java.sql.SQLException: Cannot execute statement: binlogging impossible since BINLOG_FORMAT = STATEMENT and at least one table uses a storage...
分类:
数据库 时间:
2014-08-27 14:50:47
阅读次数:
2492