`
文章列表
1. 事件设计概述     事件机制可以是程序逻辑更加清晰可见,在JavaScript中很多对象都有自己的事件,如:button有onclick事件,selcet有onchange事件。对于我们自己设计的类,是否也可以有事件机制呢?答案是肯定的。我们可以通过事件机制,将类设计为独立的模块,从而使其可以通过事件与外通信,提高程序的开发效率。 2. 不带参数的事件设计模式     最简单的一种模式是将一个类的方法成员定义为事件,可以借助JavaScript的基本语法来实现,通常是一个空的方法。例如: <script language="javascript" ...
1.coder create or replace and compile java source named Hello as public class Hello { public static String sayHello(String name){ return "hello,"+name; } } 2.coder create or replace function execHello(cmd varchar2) return varchar2 ...
1.html 代码 <html:form action="/test" method="post"> <html:submit property="action"> <bean:message key="toone"/> </html:submit><br> <html:submit property="action"> <b ...
function trim(s) { try { return s.replace(/^\s+|\s+$/g,""); } catch(e) { return s; } }
1.方法一: /** List order not maintained **/ public static void removeDuplicate(ArrayList arlList) { HashSet h = new HashSet(arlList); arlList.clear(); arlList.addAll(h); } 2.方法二: /** List order maintained **/ public static void removeDuplicateWithOrder(ArrayList arlLi ...
protected ActionForm processActionForm(HttpServletRequest request, HttpServletResponse response, ActionMapping mapping) { // Create (if necessary) a form bean to use //(如果有 ...
内容见附件
关于内容见附件!
用表格做网页排版的时候,一般都能正常使用。偏偏有时会碰到一段连续的英文词或者一堆感叹号(!!!)把网页就撑开的现象:( 总结了一下,只要在CSS中定义了如下句子,可保网页不会再被撑开了。 table{table-layout: fixed;} td{word- ...
    JSON (JavaScript Object Notation)一种简单的数据格式,比xml更轻巧。 JSON 是 JavaScript 原生格式,这意味着在 JavaScript 中处理 JSON 数据不需要任何特殊的 API 或工具包。 JSON的规则很简单: 对象是一个无序的“‘名称/值’对”集 ...
1.构造方式定义类,优点:多个实例对象不共享类的属性值,缺点:每个实例对象都会产生出一个函数say //构造方式定义类,优点:多个实例对象不共享类的属性值,缺点:每个实例对象都会产生出一个函数say function User(){ this.username = "zhangsan";//this.不能丢 this.say = function(){//this.不能丢 alert("username:" + this.username );//this.不能丢 } //下面注释的这种写法不对 // function ...
1.第一种方式,冒充对象的方式.(利用js里的每一个方法名都是一个Function对象) //第一种方式,冒充对象的方式.(利用js里的每一个方法名都是一个Function对象) function Parent(username){ this.username = username; this.say = function(){ alert(this.username); } } function Child(username,password){ th ...
import java.io.*; /* A CompilingClassLoader compiles your Java source on-the-fly. It checks for nonexistent .class files, or .class files that are older than their corresponding source code. */ public class CompilingClassLoader extends ClassLoader { // Given a filename, read the en ...
那就首先说点Runtime类吧,他是一个与JVM运行时环境有关的类,这个类是Singleton的。我说几个自己觉得重要的地方。 1、Runtime.getRuntime()可以取得当前JVM的运行时环境,这也是在Java中唯一一个得到运行时环境的方法。 2、Runtime上其他大部分的方法都是实例方法,也就是说每次进行运行时调用时都要用到getRuntime方法。 3、Runtime中的exit方法是退出当前JVM的方法,估计也是唯一的一个吧,因为我看到System类中的exit实际上也是通过调用Runtime.exit()来退出JVM的,这里说明一下Java对Runtime返回值的一般规 ...
在原来的log4j.properties的基础上添加 log4j.logger.httpclient.wire.header=INFO 是否debug头信息 log4j.logger.httpclient.wire.content=INFO 是否debug内容 log4j.logger.org.apache.commons.httpclient = INFO 是否debug一下httpclient目录下的文件。 简简单单就可以打开还是关闭是否打印头还是body等。
Global site tag (gtag.js) - Google Analytics