51CTO博客开发blackanger译言科技36氪InfoWorld又拍云风的博客李晨光原创技术博客啄木鸟社区PythonZhDoc
在网页浏览中,可以通过使用Tab键来切换元素焦点,如在页面表单中input元素、checkbox、超链接。我们不必设定它们的tabIndex值,如此页面会按照DOM的树形结构自动选取合适的下一个切换点。 tabIndex使用演示1 ; tabIndex的合法值:...-3,-2,-1,0,1,2,3... 说明:
1,冻结首行或首列:单击任意单元格,选择选择【View->Freeze Panes->Freeze Top Row / Free First Column】; 2,冻结前两行与左列:单击B3单元格,选择【窗口->冻结窗口】【View->Freeze Panes->Freeze Panes】。B3的选取方法:需要冻结的行数与列数分别加1。此处为1列2行,所以B3。
重装Eclipse,不记得以前设置的Eclipse java显示字体了,又不太想使用默认字体,所以google后记录下来。 1. 最初搜索链接:bing结果 2. 找到stackoverflow的一篇,What's a the best small font for eclipse 最终我选择的字体也是出自这里,Bitstream Vera Sans Mono,10pt。下载地址是这里。帖子
全球市区划分,参考wiki图片。 我们平时所见UTC+08:00,意指8 hours ahead of Greenwich Mean Time, an identifier for a time offset from UTC of +08:00. In ISO 8601 the associated time would be written as 2012-05-
Solr配置初步
Java 6 --> Java 7
解决方法安装Solr过程出现错误,报异常 org.apache.solr.common.SolrException: Error loading class 'solr.VelocityResponseWriter' , 解决方法: 找到$solr_home\conf\solrconfig.xml,把中间(Solr 3.5.0 1554行) <queryR
演讲 演讲(中英文字幕版) 奥巴马演讲集萃
对观察者模式的理解,参考来自之前文章提到的来自DZone的Cheat Sheet。 Observer/观察者模式: UML类图: TODO Purpose/模式定义: Lets one or more objects be notified of state changes in other objects within the s
设计模式,在项目开发、技术面试中经常能够被问到,其主要考点会集中于: Purpose/此模式的定义 Use When/Scenario/应用场景 Example/在项目中具体使用到的某一个地方 UML类图 整理的资料可以帮助记忆,可以参考如下资料: 来自DZone的The Essential Design Patterns
http://blog.csdn.net/jasonblog/article/details/7026193 http://baike.techweb.com.cn/ http://news.csdn.net/n/20070425/103304.html http://www.webjx.com/html-xhtml/webxhtml-15952.html
哈佛大学:计算机导论I2009Hadoop http://www.cloudera.com/
IE之下可以使用HttpWatch,不过是收费工具,参考HttpWatch工具简介及使用技巧 firefox下可以使用FireBug。
we're asked what're Heap and Stack in java? refer to http://stackoverflow.com/questions/1208695/where-methods-live-stack-or-in-heap and How the Java virtual machine performs th
http://www.fusioncharts.com/demos/blueprint/#start
参考自:http://www.cnblogs.com/phphuaibei/archive/2011/09/08/2171903.html 三维地图,目前只有都市圈和E都市有提供。 Google街景可以在浏览器安装google earth插件后显示。
http://gojko.net/2009/10/23/mockito-in-six-easy-examples/ http://java.dzone.com/articles/mockito-pros-cons-and-best
http://www.baeldung.com/2011/10/02/testing-the-service-layer/ http://stackoverflow.com/questions/5354907/service-layer-testing-in-spring-mvc-using-easymock http://stackoverflow.com/questions/5
Cobertura is a free Java tool that calculates the percentage of code accessed by tests. It can be used to identify which parts of your Java program are lacking test coverage. It is based on jcoverage.
In practice, we may need write test case to test List. Sometimes we need to overwrite the inner objects' hashCode() and equals(). If the List only contains String object, we can write test cas
Google发来邮件,声称Google Wave即将关闭:2012年1月31日起只读,允许导出;2012年4月30日关闭服务。并推荐用户导出在Wave中的重要数据。 除了Google Wave之外,谷歌还计划关闭另外几个项目:Google Search Timeline(谷歌搜索时间轴)、存储服务Google Gear、Google Friend Connect(谷歌好友链接
欧冠小组赛D组形势尚不明朗,阿贾克斯里尔争夺另一16强出线权,希望昔日的攻势足球鼻祖能够杀出重围,再演风暴。
右移 System.out.println(-3>>1); 结果是-2,为什么会是-2呢?下面我们来看一下. System.out.println(Integer.toHexString(-3));得到-3的16进制为fffffffd(此为-3的补码,计算机中负数用补码表示). 转换成2进制为1111 1111 1111 1111 1111 1111 1111 1101 右移
有如下两种定义方式: int arr[][] = {{1,2,3},{4,5,6,7},{8}}; int[][] b = new int[5][5]; 那么其不同在哪里呢? 1. out(arr[2][1]);会越界;其他值未赋值;不可对空的元素(如arr[2][1])再赋值。 2. 未显式赋值,out(b[1][1]);会输出0,有默认值; 3. 内存分配。 待补充。
JavaEye被河蟹掉了
Copyright © 2005-2023 51CTO.COM 版权所有 京ICP证060544号