在开始后面的内容之前,先来解释一下urllib2中的两个个方法:info and
geturlurlopen返回的应答对象response(或者HTTPError实例)有两个很有用的方法info()和geturl()1.geturl():这个返回获取的真实的URL,这个很有用,因为urlopen(或...
分类:
编程语言 时间:
2014-05-26 23:17:30
阅读次数:
352
LinearLayout linearLayoutMain = new
LinearLayout(this);//自定义一个布局文件 linearLayoutMain.setLayoutParams(new
LayoutParams( LayoutParams.MATCH_PARENT, ...
分类:
移动开发 时间:
2014-05-26 16:22:12
阅读次数:
257
1 /** 2 * 把返回的数据集转换成Tree 3 * @param array $list
要转换的数据集 4 * @param string $pid parent标记字段 5 * @param string $level level标记字段 6 *
@return array 7...
分类:
其他好文 时间:
2014-05-26 14:01:51
阅读次数:
225
1、static:静态的静态对象不属于对象,它只属于一个类 class Person{ static
$type="小孩"; public $name; public $pwd;
}2、调用静态对象:person::$type类本身调用静态对象:self::$type3、extends:继承
分类:
其他好文 时间:
2014-05-26 13:12:08
阅读次数:
196
1.取消选中这行[tableView deselectRowAtIndexPath:indexPath
animated:YES];2.去掉tableView的分割线(ios7)self.tableView.separatorStyle =
UITableViewCellSeparatorStyle...
分类:
其他好文 时间:
2014-05-26 12:47:25
阅读次数:
253
1.异常:Cannot delete or update a parent row: a
foreign key constraint
fails 解决方案:将MySQL方言修改为org.hibernate.dialect.MySQLInnoDBDialect问题解决
分类:
其他好文 时间:
2014-05-26 10:29:56
阅读次数:
229
>> HTML:> 语法用两个空格来代替制表符(tab) --
这是唯一能保证在所有环境下获得一致展现的方法。对于属性的定义,确保全部使用双引号,绝不要使用单引号。~~~回归html4的松散包容特性,并非xml的一种实现不要在自闭和(self-closing)元素的尾部添加斜线
-- HTML5 规...
分类:
其他好文 时间:
2014-05-23 03:30:09
阅读次数:
334
1 创建Ring 代码详细分析
在OpenStack_Swift——Ring组织架构中我们详细分析了Ring的具体工作过程,下面就Ring中增加设备,删除设备,已经重新平衡的实现过程作详细的介绍。
首先看RingBuilder类 def __init__(self, part_power, replicas, min_part_hours):
#why 最大 2**32
...
分类:
其他好文 时间:
2014-05-23 01:50:35
阅读次数:
406
注意两点
1.通过android:checkedButton="@+id/lunch"而不是item中的 android:checked="true"设置的某人被选中状态
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
a...
分类:
其他好文 时间:
2014-05-23 00:04:35
阅读次数:
344
话不多少,直接上代码,思路还是挺简单的。
UIWebView *webView = [[UIWebView alloc]initWithFrame:self.view.frame];
// HTML文件来自Project
// 步骤:path - > url - > request with url - > loadRequest
NSStrin...
分类:
编程语言 时间:
2014-05-22 23:53:05
阅读次数:
442