11 2010 档案
摘要:1.被代理对象的接口:2.被代理的对象:3.InvocationHandler包装:4.测试类:
阅读全文
摘要:Struts2 Resul Types 配置在 struts-core-2.xxx.jar中的 struts-default.xml中。[代码]
阅读全文
摘要:xwork-convertion.propertiesactionName-convertion.properties注意 point=test.converter.PointerConverter最后不能有空格,否则查找出错.myeclipse svn使用:
阅读全文
摘要:<!--struts2配置--><package name="default" namespace="/login" extends="struts-default"> <action name="myLogin" class="test.action.LoginAction"> <result name="input">/index.jsp&l...
阅读全文
摘要:有bug在IE下正常,FF下出错.发现FF调试时,断点不能进.试过几次,找到了窍门.1.先打开firebug,定位到出错的页面. (一定要先打开firebug).2.打开脚本标签,定位到js文件. 查看JS代码的行号出现绿色加粗的行,表示可以打断点的.3.点击行号打断 点,触发相应事件,即可进入断点.
阅读全文
摘要:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head> <title> New Document </title> <meta name="Generat...
阅读全文
该文被密码保护。
摘要:The middle-tier component of the Java EE architecture consists of an application server often fronted by a web server. These servers serve up web content and execute servlets and JSP pages in response...
阅读全文
摘要:package tags;import java.util.Collection;import java.util.Iterator;import javax.servlet.jsp.JspException;import javax.servlet.jsp.tagext.TagSupport;public class IteratorTag extends TagSupport { privat...
阅读全文
摘要:[代码]Simple Tag[代码]
阅读全文
摘要:package test;import java.sql.*;public class TestJdbcForSqlserver2008 { /** * @param args */ public static void main(String[] args) { final String JDriver = "com.microsoft.sqlserver.jdbc.SQLServerDr...
阅读全文
摘要:The JSTL is often referred to as a single tag library when in fact it's a collection of four tag libraries. Each tag library provides useful actions (or tags) based on the following functional areas:C...
阅读全文
摘要://鼠标移上去tr变色(function($) { $.fn.hightlightTR = function(options) { var defaults = { backgroundColor: "#006AA6", //原来的背景色 highlightColor: "black", //高亮背景色 hasHeader: true,//是否有表头 hasTail: true,//是否有表尾 o...
阅读全文
摘要:Expression-LanguageImplicit Object DescriptionapplicationScopeThis is a Map that contains all application-scoped variables. The Map is keyed on the name of the variable. cookieThis is a Map that maps...
阅读全文
摘要:4站乘坐 80路(或 高峰专线14), 在 益田中路站 下车
阅读全文
摘要:一.request对象:该对象封装了用户提交的信息,通过调用该对象相应的方法可以获取封装的信息,即使用该对象可以获取用户提交信息。它是HttpServletRequest的实例。JSP下面介绍request的常用方法:1,getParameter();使用如下 String str=request.getParameter();2,setAttribute();和getAttribute();re...
阅读全文
摘要:DOM,SAX和JAXPDOM: Document Object ModelSAX: Simple API for XML有没有办法让我们在更换解析器时,不用对己发布的程序做任何改动呢?JAXP API可以帮助我们实现这一点.为了屏蔽具体厂商的实现,让java开发人员以一种标准的方式对XML进行编程,SUN公司制定了JAXP(Java API for XML processing)规范.JAXP没...
阅读全文
摘要:http://xerces.apache.org/TheApache Xerces Projectcurrently consists of the following sub-projects, each focused on the development of XML parsers and related components in various languages:Apache Xer...
阅读全文
摘要:http://www.microsoft.com/downloads/details.aspx?FamilyID=cf49c56c-8b3e-4eae-9904-9505f47bed45&displayLang=zh-cn支持的操作系统: Windows 2000; Windows 98; Windows 98 Second Edition; Windows ME; Windows Ser...
阅读全文
摘要:http://msdn.microsoft.com/zh-cn/library/h6bb9cz9(VS.80).aspx
阅读全文
摘要:http://weblogs.asp.net/scottgu/archive/2010/05/07/jquery-templates-and-data-linking-and-microsoft-contributing-to-jquery.aspxjQuery Templates, Data Link, and Globalization Accepted as Official jQuery ...
阅读全文
摘要:If a copy of the libraries is physically part of the executable, then we say the executable has been statically linked.if the executable merely contains filnames that enable the loader to find the pro...
阅读全文
摘要:Objects in C must have exactly one definition, and they may have mutiple external declarations.Definition: occurs in only one place. specifies the type of an object; reserves storage for it; it is use...
阅读全文
摘要:Symbol Meaning static Inside a function, retains its value between callsAt the function level, visible only in this file. extern Applied to a function definition, has global scope(and is redundant)App...
阅读全文
摘要://use: $("selector").inputOnlyNum();只输入数字 (function($) { $.fn.inputOnlyNum = function() { this.keypress(function(e) { if (e.which == 8 || e.keyCode == 9) return true; //Backspace & Tab in ff var ...
阅读全文
摘要:http://sz.chachaba.com/api.html
阅读全文