<body> <input type="checkbox" id="ckAll" />check all<br /> <input type="checkbox" name="sub" />1<br /> <input type="checkbox" name="sub"/>2<br /> <input type="checkbox" name="sub"/>3<br /> <input t...
分类:
Web程序 时间:
2014-07-22 09:13:34
阅读次数:
325
实例: applicationContext-quartz.xml配置: ?<beans> ???????<bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> ????????? ?<property name="dataSource">?? ??...
分类:
编程语言 时间:
2014-07-22 09:13:34
阅读次数:
268
前端开发有一个叫渐进增强开发模型,有三个层次,分别是结构层(html),表现层(css),行为层(javascript)。该模型强调三个层次的分隔,可以直观地表现为html、css、js各自作为文件存放。这样做的好处是易维...
分类:
编程语言 时间:
2014-07-22 09:00:04
阅读次数:
215
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">? <html xmlns="http://www.w3.org/1999/xhtml">? ?<head>? ? <title> new ...
分类:
Web程序 时间:
2014-07-22 08:10:34
阅读次数:
229
最近在运行项目的时候,突然Xcode提示: XXX.app:?the?main?executable?or?Info.plist?must?be?a?regular?file?(no?symlinks,?etc.)
Command?/usr/bin/codesign?failed?with?exit?code?1 然后...
分类:
其他好文 时间:
2014-07-21 10:32:26
阅读次数:
242
在你要刷新adapter的地方这样写 position是点击listView的行位置 当然在执行下面2行的代码前要改变数据内容 例如: if (orderList[pos].getStatus() == 0) { orderList[pos].setStatus(1); } else { orderList[p...
分类:
其他好文 时间:
2014-07-21 10:28:52
阅读次数:
174
有些时候我们需要获取当前手机上绑定的谷歌账户名,也就是Gmail账户名,以便标记不同用户。 现在我发现主要有三种方式获取gmail账户: 1 android 自带API ? ?这种方式最简单,最容易实现,但是这种方式需要一个...
分类:
其他好文 时间:
2014-07-21 10:22:37
阅读次数:
380
1、throws关键字通常被应用在声明方法时,用来指定可能抛出的异常。多个异常可以使用逗号隔开。当在主函数中调用该方法时,如果发生异常,就会将异常抛给指定异常对象。如下面例子所示:
public?class?Shoot?{...
分类:
编程语言 时间:
2014-07-21 10:20:34
阅读次数:
278
Git在make的时候报错:Can‘t locate ExtUtils/MakeMaker.pm in @INC 解决方法如下: yum -y install perl-devel?perl-CPAN git 需要perl来编译。然后重新make Git Make时出现:tclsh failed; using unoptimized...
分类:
其他好文 时间:
2014-07-21 10:13:01
阅读次数:
375
指针存储的是内存地址,那么当代码执行 int?*iptr;
int?a;
iptr?=?&a; ????它表示iptr指向了a所在的内存地址。那么若执行 *iptr?=?10;
printf("a?=?%d\n",a); ????那么a的值为多少呢? ...
分类:
其他好文 时间:
2014-07-21 10:11:50
阅读次数:
166