Web app
iteye_9716
这个作者很懒,什么都没留下…
展开
-
Javascript Constructor
[code="java"]//declaring the constructor function ArrayMaker(arg1, arg2) { this.someProperty = 'whatever'; this.theArray = [ this, arg1, arg2 ]; } // declaring instance met...原创 2010-01-04 18:49:05 · 78 阅读 · 0 评论 -
log4j 介绍(2)--Logger 篇
紧紧接着log4j 介绍(1)--Logger篇If a given logger is not assigned a level, then it inherits one from its closest ancestor with an assigned level. More formally:[color=darkred][b]Level Inheritance [/b][/...原创 2009-08-18 12:05:38 · 97 阅读 · 0 评论 -
log4j 介绍(3)--Appender 篇
Q: 什么是Appender?A: Log4j allows logging requests to print to multiple destinations. In log4j speak, an output destination is called an appender. Q: 目前有几多类型的Appender?A: Currently, appenders ...原创 2009-08-18 13:15:38 · 100 阅读 · 0 评论 -
log4j 介绍(4)-- Layout篇
[color=darkred][b]Layout of the log file[/b][/color]More often than not, users wish to customize not only the output destination but also the output format. This is accomplished by associating a lay...原创 2009-08-18 16:09:59 · 118 阅读 · 0 评论 -
log4j 介绍(5)-- Configuration篇
The log4j environment is fully configurable programmatically. However, it is far more flexible to configure log4j using configuration files. Currently, configuration files can be written in XML or in ...原创 2009-08-18 16:55:36 · 149 阅读 · 0 评论 -
log4j 介绍(6)-- tutorial 参考
如果看了前面5部分,还没有建立起log4j的整个框架的概念,那么请参考这个链接: http://www.laliluna.de/log4j-tutorial.html接下来我将写上自己的一个例子...原创 2009-08-18 19:54:11 · 87 阅读 · 0 评论 -
log4j 介绍(7)-- Example篇
:lol: 在实际项目中,一般会采用读取配置文件的方式进行log控制,最常用的是log4j.properties第一步: 新建一个java工程,名字就叫: logExample1第二步: 在src目录下新建log4j.properties文件代码如下:[code="java"]#define the root logger#appender's name is file ...2009-08-18 20:40:51 · 146 阅读 · 0 评论 -
Textarea 获取数据库中的内容格式问题的解决方法
我这种的解决方案关键是两点:第一,在查看jsp页面中的textArea项目中加入如下代码:[code="java"][/code]第二,不要留任何空格在和之间。这样就好了,祝您好运!...原创 2010-06-24 14:18:46 · 355 阅读 · 0 评论 -
PDF文字拷贝问题解决思路
有时候我需要把PDF中的文字拷贝出来,比如拷贝到txt文本中。这个时候呢,一般情况我会用adobe writer pro打开这个文档,直接选中复制好了,这个时候我又一次碰到一个问题,不是密码保护问题,是pdf字体的问题,我系统中并没有pdf文档中的那些字体,我拷贝出来复制到文本中的全成了乱码。 那就去下载字体咯,可我也不知道该下载什么字体,真倒霉! 这儿时候我就应该切换下...原创 2010-07-02 16:37:57 · 149 阅读 · 0 评论 -
log4j 介绍(1)-- Logger篇
[color=darkred][b][size=large]Loggers, Appenders and Layouts[/size][/b][/color]Log4j has three main components: loggers, appenders and layouts. These three types of components work together to ena...原创 2009-08-18 11:53:23 · 129 阅读 · 0 评论 -
Ampersands (&'s) in URLs
Ampersands (&'s) in URLsAnother common error occurs when including a URL which contains an ampersand ("&"): ...This example generates an error for "unknown entity section" because the "&" is...原创 2009-08-04 21:21:55 · 105 阅读 · 0 评论 -
JavaScript 片断
[code="java"] ........... [/code]以下是js文件部分[code="java"]function validationOnEnter(event) { var browser=navigator.appName; var value = false; if(browser=='M...原创 2009-07-20 16:36:07 · 81 阅读 · 0 评论 -
HTTP协议中的关于cache得一些知识
[b]1. Pragma[/b]When the no-cache directive is present in a request message, an application SHOULD forward the request toward the origin server even if it has a cached copy of what is being reques...原创 2009-05-15 17:21:20 · 145 阅读 · 0 评论 -
The include directive And <jsp:include>
The include directive inserts the SOURCE of JSP or HTML files at [b]translation time[/b].But the standard action inserts the RESPONSE of the JSP or HTML files [b]at runtime[/b].There is an exra...2009-06-21 13:42:04 · 99 阅读 · 0 评论 -
Javascript 之“提醒语句”
[code="java"]function validationNonEmpty(inputField, helpText){ if(inputField.value.length == 0 ){ if(helpText != null) helpText.innerHTML = "Please enter a value"; return false;...原创 2009-07-16 13:11:59 · 107 阅读 · 0 评论 -
Javascript 正则表达式的三个方法
The RegExp Object has 3 methods: test(), exec(), and compile().[code="java"]var patt1=/\d/document.write(patt1.test("34a"));[/code]页面输出是true[code="java"]function validationRegExp(r...原创 2009-07-18 00:56:13 · 160 阅读 · 0 评论 -
request.getParameter("name") 与request.getParameterValues("name")
有时候在JSP里,我们会使用很多相同name的field,比如像这样:[code="java"] xxd1 xxd2 xxd3 [/code]如果使用(ServletRequest)request.getParameterValues("view1"),这样将这请求发送到的servlet或者j...原创 2010-01-08 13:49:13 · 319 阅读 · 0 评论 -
键盘的F1到F12键 你会用哪几个
键盘的F1到F12键 你会用哪几个 F1:如果你处在一个选定的程序中而需要帮助,那么请按下f1。如果现在不是处在任何程序中,而是处在资源管理器或桌面,那么按下f1就会出现windows的帮助程序。如果你正在对某个程序进行操作,而想得到windows帮助,则需要按下win+f1。按下shift+f1,会出现"what39;s this?"的帮助信息。 F2:如果在资源管理器...原创 2010-01-08 14:13:53 · 131 阅读 · 0 评论 -
JavaScript是如何执行语句的
摘自 悟透JavaScript function myfunc (){alert("hello");};myfunc(); //这里调用myfunc,输出yeah 而不是hellofunction myfunc (){alert("yeah");};myfunc(); //这里调用myfunc,当然输出yeah 原来,JavaScript 执行引擎并非一行一行地分析和执行...原创 2010-01-18 16:03:04 · 179 阅读 · 0 评论 -
JavaScript "闭包"
[code="java"] function Person(firstName, lastName, age){ // 私有变量 var _firstName = firstName; var _lastName = lastName; // 公用变量 this.age = age; // 方法 this.getname = ...原创 2010-01-20 19:32:17 · 85 阅读 · 0 评论 -
JBoss7官方最新版下载地址
JBoss是全世界开发者共同努力的成果,一个基于J2EE的开放源代码的应用服务器。 因为JBoss代码遵循LGPL许可,可以在任何商业应用中免费使用它,而不用支付费用。2006年,Jboss公司被Redhat公司收购。JBoss是一个管理EJB的容器和服务器,支持EJB 1.1、EJB 2.0和EJB3.0的规范。但JBoss核心服务不包括支持servlet/JSP的WEB容器,一般与Tomcat...原创 2014-06-09 15:19:38 · 283 阅读 · 0 评论