摘要: 1.dialog组件 1 2 3 4 test.html 5 6 7 8 9 10 11 12 13 14 15 16 Dialog Content17 18 19 20 23 实现JQueryEasyUI方式多种 a.纯CSS实现: 前提是引入了 easyui.css 或者 dialog.css1 2 The dialog content.3 b.js方式实现 The dialog content. 1 $(... 阅读全文
posted @ 2014-02-27 22:05 未来动力 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 1 package com; 2 import java.io.*; 3 public class MyEclipseGen { 4 private static final String LL = "Decompiling this copyrighted software is a violation of both " + 5 "your license agreement and the Digital Millenium Copyright Act of 1998 " + 6 "(http:... 阅读全文
posted @ 2014-02-27 20:39 未来动力 阅读(478) 评论(0) 推荐(0) 编辑
摘要: 1.泛型方法的定义 1 class Demo 2 { 3 public T getInfo(T t) 4 { 5 retun t; 6 } 7 } 8 9 public class Test 10 {11 public static void main(String args[])12 {13 Deno demo = new Demo();14 String var = demo.gettInfo("java");15 int num = d.getInfo... 阅读全文
posted @ 2014-02-25 22:25 未来动力 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 1、后置通知需求:调用相应业务方法后,完成资源的关闭。a、 在beans.xml中配置 1 .... 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 com.huawei.aop.Test1ServiceInter20 com.huawei.aop.Test2ServiceInter 21 22 23 24 25 26 27 ... 阅读全文
posted @ 2014-02-25 21:06 未来动力 阅读(361) 评论(0) 推荐(0) 编辑
摘要: 1.浏览器能力检测 根据浏览器不能将能力组合起来是更可取的方式。一次性检测所有相关特性,而不分别检测。 举例1 //确定浏览器是否支持Netscape风格的插件2 var hasNSPlugins = !!(navigator.plugins && navigator.plugins.length)3 4 //确定浏览器是否具有DOM1级规定的能力5 var hasDOM1 = !!(document.getElementById && document.createElement && document.getElementByTagName) 阅读全文
posted @ 2014-02-21 22:01 未来动力 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 1.js特性检测 http://peter.michaux.ca/articles/feature-detection-state-of-the-art-browser-scripting2.How to write the plugin in jQuery.http://www.codeproje... 阅读全文
posted @ 2014-02-21 08:06 未来动力 阅读(124) 评论(0) 推荐(0) 编辑
摘要: zope:一个容器项目Plone:一个基于zope的工作流和内容管理项目trac:一个项目管理(任务指派、bug追踪项目,可以和subversion集成)moinmoin:一个强力的weiki系统 阅读全文
posted @ 2014-02-20 21:39 未来动力 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 1.python模块导入原理 概念:模块即 包含函数、类、变量的独立的python文件 使用关键字 import a. import 模块名模块名.函数名() 新建文件m.py1 def plus(a, b);2 return a + b3 4 def plus2();5 j... 阅读全文
posted @ 2014-02-20 21:21 未来动力 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1.请问下面的实现可以吗?1 public interface A{}2 public interface B{}3 public class C implements A, B{}4 A a = new C(); 5 B b = (B) a;答案是可以的,一个类实现了多个接口,该类的实例的类型可以在实现的接口之间转化。是通过接口实现多态的一种表现。2.序列化应用场景举例 概念:序列化 java对象需要序列化到本地硬盘或者需要在网络中传输时需要将java对象进行实例化操作,被实例化的类需要实现serializable接口。该接口没有需要被实现的方法。需要被实例化的类实现serializabl. 阅读全文
posted @ 2014-02-19 22:06 未来动力 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 1.启动多线程的方法名是什么 start2.JDBC的实现过程3.session 和 cookie 的区别和联系4.spring aop中通过代理获取的ProxyFactoryBean是一个什么类型 //获取实例对象 Test1ServiceInter ti = (Test1ServiceInter) ac.getBean("proxyFactoryBean"); 其中 ti 是一个代理对象。 目标对象实现了接口,则spring采用的是jdk动态代理技术,如果目标对象没有实现接口,则spring使用的是CGLIB技术。 阅读全文
posted @ 2014-02-18 08:01 未来动力 阅读(162) 评论(0) 推荐(0) 编辑