- 浏览: 31879 次
- 性别:
- 来自: 深圳
最新评论
-
xiaolng:
alibabachem 写道请问你加上密码是多少啊?
这个模板 ...
模板模板 -
alibabachem:
请问你加上密码是多少啊?
模板模板
文章列表
资料名称
下载地址
《软件框架设计的艺术》(Practical API Design)【英文原版PDF】
http://down.51cto.com/data/173728
Java零基础学习程序设计+帮助文档(适合初学者)
http://down.51cto.com/data/636058
[Android开发书籍]Learn Java for Android Development
http://down.51cto.com/data/614721
Guide to Web Development With Java Understanding Website
http://down.51c ...
文件清单
navi.html
navi.css
navi.js
jquery-1.6.2.js
navi.css
@CHARSET "UTF-8";
body{margin:0 auto;padding:0;font-size:12px;font-family:Arial '宋体'}
ul,li{list-style: none;display:inline-block;padding:0;margin:0;}
a{outline-style: none;}
.navi_main{width:100%;height:30px;margin:0 auto;pa ...
文件清单
jquery-1.6.2.js
navigation.js
main.css
navigation.html
直接上代码
引用navigation.js代码
$(function(){
Navigation_init();
});
Navigation_init = function (){
//依次为事件链接初始化index,以便区分触发事件导航
$('ul.root_ul a.root_a').each(function(index,element){
$(this).attr('index',index);
});
$('ul.child ...
dwr official website http://directwebremoting.org/dwr/introduction/getting-started.html
dwr 1.x配置http://wenku.baidu.com/view/12d5de42a8956bec0975e328.html###
dwr 2.x配置http://blog.163.com/rigger21@126/blog/static/927914720077855545985/
dwr 推送技术http://wenku.baidu.com/view/83b5203f5727a5e9856a61fc.ht ...
<script type="text/javascript">
Array.prototype.sort = function(){
if(null == this || undefined == this || 0 >= this.length){
return;
}else{
for(var i = 0; i < this.length; i++){
var val = this[i];
var temp;
for(var j = i; j < this.length; j++){
...
引用
当创建了一个新的网站时,我们想急于提高网站的访客数量,当务之急就是将我们网站的网址提交给各大搜索引擎,本文总结了各大搜索引擎的提交入口地址,分享给大家。
本文最新版将不断更新,请访问:http://www.vktone.com/articles/submit-address-of-search-engine.html
百度网站收录提交地址: 一个免费登录网站只需提交一页(首页),百度搜索引擎会自动收录网页。 符合相关标准您提交的网址,会在1个月内按百度搜索引擎收录标准被处理。 百度不保证一定能收录您提交的网站。
http://www.baidu.com/search/ ...
http://www.cnblogs.com/hoojo/archive/2012/07/23/2605219.html
http://www.cnblogs.com/hoojo/archive/2011/03/30/1999563.html
cxf各版本
http://archive.apache.org/dist/cxf/2.3.3/
spring framework 各版本
http://www.springsource.org/download/community
引用http://ishare.iask.sina.com.cn/f/10120930.html?from=dl
http://www.cnblogs.com/dajianshi/archive/2006/11/26/573365.html
使用
poi-3.6.jar
poi-ooxml-3.6.jar
poi-ooxml-schemas-3.6.jar
在导入excel 2007时当单元格内超链接内容中同时含有#$%^四个字符中的任意3个时就会在WorkbookFactory.create(fis);产生一个WorkBook对象时报java.lang.IllegalStateException: The hyperlink for cell A2 references relation rId2, but that didn't exist!
避免这个异常的方法时,1.超链接内不同时使用#$%^中任意3 个。2.取消此时的超链接 ...
Oracle的锁表与解锁
SELECT /*+ rule */ s.username,
decode(l.type,'TM','TABLE LOCK',
'TX','ROW LOCK',
NULL) LOCK_LEVEL,
o.owner,o.object_name,o.object_type,
s.sid,s.serial#,s.terminal,s.machine,s.program,s.osuser
FROM v$session s,v$lock l,dba_objects o
WHERE l.sid = s.sid
AND l.id1 = o.object_id ...
String regex ="^(?:"
+ "(([0-9]{4}-(?:(?:0?[1,3-9]|1[0-2])-(?:29|30)|((?:0?[13578]|1[02])-31))) ((?:((0?|1)[0-9])|(2[0-3])):(0?|[1-5])[0-9]:(0?|[1-5])[0-9]))|" + "(([0-9]{4}-(?:0?[1-9]|1[0-2])-(?:0?[1-9]|1\\d|2[0-8])) ((?:((0?|1)[0-9])|(2[0-3 ...
/Jquery/WebContent/taglibTest.jsp
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<%@ taglib prefix="showdialog" uri="http://org.cc.taglib.tips" %>
<!DOCTYPE html PUBLIC "-//W3C//D ...
jwo.write(sbf.toString());
jwo.flush();
}catch(Exception e){
e.printStackTrace();
}
return EVAL_PAGE;// 标签执行完后,继续执行后面的
}
public int doEndTag() throws JspException {
return SKIP_BODY;// 标签执行完后,不继续执行后面的
}
public void release() {
super.release();
contents = null;
...