首页 > 全部
css中的颜色值
下面是比较适合在测试页面中用来设置背景颜色的淡颜色,最好记住一些,dark、blue、red、green、gray、olive颜色较深。
分类:Web开发   时间:2014-01-21 16:41:20    收藏:0  评论:0  赞:0  阅读:431
培训第四天的内容
写一个读取数字的类 实现输入小于max参数的数,实现输入介于min和max之间的数字,实现输入一个整数,使用指定默认参数代替了方法重载。代码:class JKConsole { public static int ReadInt(int max = int.MaxValue, int min = i...
分类:其他   时间:2014-01-21 16:41:15    收藏:0  评论:0  赞:0  阅读:298
深入浅出数据库设计三范式
设计良好结构的数据库,可以有效减小数据冗余,减少增删改中出现的问题。深入理解数据库设计的三范式,对于设计“健壮的数据库“十分有必要。数据库三范式是设计数据库 时参考的准则,接下来我们一一进行介绍:一、数据库第一范式: 数据库表的每一列都是不可分割的基本数据项,同一列中不能有多个值,即实体中的某个属性...
分类:数据库技术   时间:2014-01-21 16:41:10    收藏:0  评论:0  赞:0  阅读:410
java.util.Arrays
Arrays class contains many methods used to manipulate array ( like sort methods and binary search method). When the input parameter is null, it will t...
分类:其他   时间:2014-01-21 16:41:05    收藏:0  评论:0  赞:0  阅读:327
对象池
对象池Object pool基本思路:1. 继承PoolableObjectFactory的工厂类,用来“制造”相应的Object2. 创建一个ObjectPool用borrowObject和returnObject来进行对象“归还”和“借用”
分类:其他   时间:2014-01-21 16:40:55    收藏:0  评论:0  赞:0  阅读:289
移植u-boot-2010.03问题 --- No oob scheme defined for oobsize 32
移植u-boot-2010.03问题 --- No oob scheme defined for oobsize 321,找到u-boot-2010.03/drivers/mtd/nand下的nand_ids.c //{"NAND 2GiB 3,3V 8-bit", 0xD5, 0, 2048, 0...
分类:其他   时间:2014-01-21 16:41:00    收藏:0  评论:0  赞:0  阅读:386
poj1611---The Suspects
The SuspectsTime Limit: 1000MSMemory Limit: 20000KTotal Submissions: 19754Accepted: 9576DescriptionSevere acute respiratory syndrome (SARS), an atypic...
分类:其他   时间:2014-01-21 16:40:50    收藏:0  评论:0  赞:0  阅读:296
js中Array自定义contains, indexOf, delete方法.
Array.prototype.contains=function(elem){ for(vari=0;i<this.length;i++){ if(this[i]==elem){ returntrue; } } returnfalse; }Array.prototype.indexOf=funct...
分类:Web开发   时间:2014-01-21 16:40:36    收藏:0  评论:0  赞:0  阅读:502
Channel Allocation(DFS着色问题)
#include #include int T,grid[30][30],color[30],ret[30];void dfs(int x){ int c[30]={0},i; for (i=0;i<T;i++) if (grid[x][i]) c[color[i]] = 1; for (i=1;i...
分类:其他   时间:2014-01-21 16:40:46    收藏:0  评论:0  赞:0  阅读:557
java多线程执行时主线程的等待
1、通过thread.join()方式,注意:如果有多个子线程,需要将全部的线程先start,然后再join。代码示例如下:public class Main{ public static void main(String[] args) { long start = System.currentT...
分类:其他   时间:2014-01-21 16:40:25    收藏:0  评论:0  赞:0  阅读:403
WdatePicker 动态变量表
4. 日期范围限制静态限制 注意:日期格式必须与 realDateFmt 和 realTimeFmt 一致你可以给通过配置minDate(最小日期),maxDate(最大日期)为静态日期值,来限定日期的范围示例4-1-1 限制日期的范围是 2006-09-10到2008-12-20示例4-1-2 限...
分类:其他   时间:2014-01-21 16:40:30    收藏:0  评论:0  赞:0  阅读:378
The ObjectContext instance has been disposed and can no longer be used for operations that require a connection.
The ObjectContext instance has been disposed and can no longer be used for operations that require a connection.How to solve the error The ObjectConte...
分类:其他   时间:2014-01-21 16:40:20    收藏:0  评论:0  赞:0  阅读:454
Visual Studio 2005 快捷键汇总
Visual Studio 2005 快捷键既多,又方便,如果能熟练运用,将会对大家的编程速度有很大的提高。Ctrl+B,T / Ctrl+K,K: 切换书签开关 Ctrl+B,N / Ctrl+K,N: 移动到下一书签 Ctrl+B,P: 移动到上一书签 Ctrl+B,C: 清除全部标签 Ctrl...
分类:其他   时间:2014-01-21 16:40:10    收藏:0  评论:0  赞:0  阅读:413
DataGridView数据导入到Excel 中
#region DataGridView数据显示到Excel /// /// 打开Excel并将DataGridView控件中数据导出到Excel /// /// DataGridView对象 /// 是否显示Excel界面 /// /// add com "Microsoft Excel 11.0...
分类:Windows开发   时间:2014-01-21 16:40:05    收藏:0  评论:0  赞:0  阅读:490
CSS 基本的hack
css hack主要分为3种IE条件注释(推荐)? IE ?]>HTML代码块keywords ? 问号表示可有可无,如没有keywords表示是否为IE或者IE那个版本keywords关键字有: gt(大于), lt(小于), gte(大于等于), lte(小于等于), !(非);version ...
分类:Web开发   时间:2014-01-21 16:40:15    收藏:0  评论:0  赞:0  阅读:418
hdu Frequent values (线段树 求最值)
Problem DescriptionYou are given a sequence ofnintegersa1, a2, ... , anin non-decreasing order. In addition to that, you are given several queries con...
分类:其他   时间:2014-01-21 16:39:50    收藏:0  评论:0  赞:0  阅读:566
oracle 11g rac asm磁盘组增加硬盘
要增加磁盘的磁盘组为:DATA要增加的磁盘为: /dev/sde1在第一个节点上:[root@rac1 ~]# fdisk /dev/sdeDevice contains neither a valid DOS partition table, nor Sun, SGI or OSF disklab...
分类:数据库技术   时间:2014-01-21 16:40:00    收藏:0  评论:0  赞:0  阅读:690
php读mysql乱码问题的总结
php读mysql时,有以下几个地方涉及到了字符集。1.建立数据库表时指定数据库表的字符集。例如1 create table tablename 2 ( 3 id int not null auto_increment, 4 title varchar(20) not null, 5 primary...
分类:数据库技术   时间:2014-01-21 16:39:40    收藏:0  评论:0  赞:0  阅读:491
采用python获得并修改文件编码(原创)
windows和linux采用了不同的编码,这让很多人伤透了脑经,这里我采用了Python的chardet库获得代码的编码,然后修改编码。1、首先需要安装chardet库,有很多方式,我才用的是比较笨的方式:sudo pip installchardet2、废话不多说,直接上代码,同样废话一句,小弟...
分类:编程语言   时间:2014-01-21 16:39:46    收藏:0  评论:0  赞:0  阅读:388
RTSP、HTTP、HTTPS、SDP四种协议详解
RTSP、HTTP、HTTPS、SDP四种协议详解分类:ffmpeg2013-08-07 14:11246人阅读评论(0)收藏举报RTSP、HTTP、HTTPS、SDP四种协议详解从这篇开始我们将进入流媒体的环节,流媒体在android中有nuplayer来实现的,在开始讲解android流媒体前,...
分类:其他   时间:2014-01-21 16:39:25    收藏:0  评论:0  赞:0  阅读:952
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!