`
sooo
  • 浏览: 6922 次
  • 性别: Icon_minigender_1
  • 来自: 上海
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
在eclipse下,web项目代码编译所需要的jar包(除了jre和服务器提供的),一定要放入lib文件夹下,否则部署后将无法加载类。

log4j

    博客分类:
  • java
读log4j介绍的几点 1、Named Hierarchy A logger is said to be an ancestor of another logger if its name followed by a dot is a prefix of the descendant logger name. A logger is said to be a parent of a child logger if there are no ancestors between itself and the descendant logger. 2、Level Inheritance The inh ...

jquery--几点

一、 $(document).ready(function(){ // Your code here... }); 可简写为 $(function() { // do something on document ready }); 使你的代码在dom模型加载后执行
读jquery in action选择器 几个列表
1、equals if (this == obj) { return true; } if (obj == null || this.getClass() != obj.getClass()) { return false; Account account = (Account) obj; return new EqualsBuilder()。append(this.id, account.id) .append(this.firstName, account.firstName) .append(this.lastName, account.lastName) ...
一、居中 1、自动空白边 margin:0 auto; 2、相对定位加负值空白边     position:relative;     left:50%;     margin-left:-50%; 二、浮动布局 1、两列浮动布局 float:left;float:right 2、三列浮动布局,把两列中的一列再分成两列 三、流体布局 以百分代替px,要确定最小值以避免过小 四、弹性布局 以em为单位 五、流体-弹性布局 以em设置宽度,以%设置最大宽度 六、非固定布局中图像的处理 1、作为背景 2、设置包含图像的容器overflow:hidden;避免伸缩 3、对于可伸缩的 ...
1、用文件对象代替文件名字符串做处理 2、学会用缓存类 http://commons.apache.org/io/bestpractices.html
java的系统属性可以取得一些系统的信息,语句为System.getProperty("line.separator"); 目前我主要用于写文件时消除平台差别,如路径,行结束符;取得系统编码,以消除乱码。 可参考:http://blog.csdn.net/babydavic/archive/2007/08/23/1755718.aspx
Global site tag (gtag.js) - Google Analytics