摘要:
关键字: 关于js中window.location.href, location.href, parent.location.href "window.location.href"、"location.href"是本页面跳转"parent.location.href"是上一层页面跳转"top.location.href"是最外层的页面跳转举例说明:如果A,B,C,D都是jsp,D是C的iframe,C是B的iframe,B是A的iframe,如果D中js这样写 "window.location.href& 阅读全文
摘要:
状态码为4**和5**的都是错误,以下从http协议中摘录,全部信息请参考后边的链接。Error 4xx, 5xx The 4xx codes are intended for cases in which the client seems to have erred, and the 5xx codes for the cases in which the server is aware that the server has erred. It is impossible to distinguish these cases in general, so the difference is 阅读全文
摘要:
http://cai555.javaeye.com/blog/527985一、什么是索引索引可以理解为我们小时候使用 的汉语字典的索引,如果想在字典中查找一个字,一页一页地翻字典查找是非常慢的,但如果使用 字典的索引进行查询,很快就可以查到了。数据库的索引也是类似的。数据库中的索引一般是按照B树来组织的,叶结点指向真正的数据,B树的定义我这里就不介绍了,有兴趣的话可以去翻翻数据结构的书。二、聚族索引在这里还是用 字典来进行类比,一般来说汉语字典中有几种索引,如拼音、偏旁、笔画等。字典本身的组织也是排序的,我记得一般是按照拼音排序的。这里的拼音就是聚族索引。也就是说聚族索引的组织顺序和数据本身的 阅读全文
摘要:
1importjava.util.Hashtable;23importjavax.naming.Context;4importjavax.naming.InitialContext;56publicclassTestBinding{78privateStringbindName="ssss";910publicTestBinding(){11Hashtableenv=newHashtable();12env.put(Context.INITIAL_CONTEXT_FACTORY,13"com.sun.jndi.fscontext.RefFSContextFacto 阅读全文