Android使用的是开源的SQLite数据库,数据库本身没有加密,加密思路通常有两个:1. 对几个关键的字段使用加密算法,再存入数据库2. 对整个数据库进行加密SQLite数据库加密工具:收费工具:SSE(SQLite Encryption Extension)免费工具:SQLCipherSQLC...
分类:
移动开发 时间:
2014-07-29 17:12:32
阅读次数:
296
-(void)shareWork:(id)sender{ UIActionSheet *share = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"关闭" destructiveButtonT....
分类:
其他好文 时间:
2014-07-29 17:01:12
阅读次数:
273
PyGObject is a Python extension module that gives clean and consistent access to the entire GNOME software platform through the use of GObject Introspection. PyGObject provides full support of GObject Introspection and all of its features (callbacks, GVari...
分类:
编程语言 时间:
2014-07-29 13:04:47
阅读次数:
343
终端输入:sudo gedit /usr/share/themes/Ambiance/gtk-2.0/gtkrc 第一行将看到如下内容: gtk-color-scheme = "base_color:#ffffff\nfg_color:#4c4c4c\ntooltip_fg_color:#...
分类:
系统相关 时间:
2014-07-29 12:21:46
阅读次数:
323
java算法插入排序优化代码 代码下载地址:http://www.zuidaima.com/share/1550463280630784.htm...
分类:
编程语言 时间:
2014-07-28 16:20:43
阅读次数:
216
java希尔排序算法 代码下载地址:http://www.zuidaima.com/share/1550463279090688.htm...
分类:
编程语言 时间:
2014-07-28 00:21:49
阅读次数:
248
在做tableView的时候,我们有时候需要根据cell的高度动态来调整,最近在网上看到一段代码不错,跟大家Share一下。
在
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath
*)indexPath{
类中获取cell的高度:
CGSize bo...
分类:
移动开发 时间:
2014-07-27 23:42:29
阅读次数:
421
第一步:sudo apt-get install maven 这里会自动下载maven第二步:sudo gedit /etc/environment第三步:在第二步打开的编辑上后面加上M2_HOME=/usr/share/mavenMAVEN_OPTS="-Xms256m -Xmx512m"PATH...
分类:
其他好文 时间:
2014-07-27 10:14:52
阅读次数:
166
开启phpcurl函数库的步骤1).去掉php.ini文件里;extension=php_curl.dll前面的;/*用echophpinfo();查看php.ini的路径*/2).把php5/libeay32.dll,ssleay32.dll复制到系统目录windows/下3).重启apache
分类:
Web程序 时间:
2014-07-26 15:37:32
阅读次数:
178
Windows环境下打开PHPMb_String的方法1.确保你的Windows/system32下有php_mbstring.dll这个文件,没有就从你Php安装目录extensions里拷入Windows/system32里面。2.在windows目录下找到php.ini打开编辑,搜索mbstring.dll,找到;extension=php_mbstring.dll然后将前面的;号去掉..