- 浏览: 228525 次
- 性别:
- 来自: 北京
-
最新评论
-
chenghong726:
有完整代码吗?
导入Excel工具(java公用工具)示例 -
wellway:
去不掉啊,是否还要其他设置?
Jquery UI dialog 关闭按钮消除 -
zcdnsz:
免费的一般没有~~~~因为jsp的这个东西太耗费资源了.... ...
一个提供jsp免费空间的网站(转) -
xmllong:
楼主写错了吧,是eclipse的插件,在MYECLIPSE里面 ...
MyEclipse安装struts2插件(转)
文章列表
1、org/objectweb/asm/CodeVisitor的解决方法S2SH集成时,有时会出现包冲突错误,我做个两个项目中,第一个没事,也都存在以下包:
第一个项目中:
1、asm-2.2.3.jar
2、asm-attrs.jar
3、asm-commons-2.2.3.jar
4、asm-util-2.2.3.jar
5、asm.jar
第二个项目中:
1、asm-2.2.3.jar
2、asm-util-2.2.3.jar
3、asm-commons-2.2.3.jar
4、asm-attrs.jar
5、asm.jar
...
这个时候我不想使用rsp中自己带的那个tomcat,我想自己已经有的tomcat。就在这个时候我遇到问题了。什么问题呢,我们来看看启动时的log
严重: Servlet.service() for servlet jsp threw exception
org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application
...
dbutils开源项目用法:
项目地址:http://commons.apache.org/dbutils/
最新版本为 1.1
英文文档中这样写到:
DbUtils is a very small library of classes so it won't take long to go through the javadocs for each class.
The core classes/interfaces in DbUtils are QueryRunne ...
http://flashdream8.iteye.com/blog/546201
http://aben328.iteye.com/blog/622499
/**********************************/
/* Jforum安装与中文化设置 */
/* */
/* author: atom chan */
/* ...
验证码 getOutputStream() has already been called for this response异常的原因和解决方法
2009-03-12 18:59
1.tomcat5下jsp出现getOutputStream() has already been called for this response异常的原因和解决方法在tomcat5下jsp中出现此错误一般都是在jsp中使用了输出流(如输出图片验证码,文件下载等),
没有妥善处理好的原因。
具体的原因就是
在tomcat中jsp编译成servlet之后在函数_jspService(HttpServletRequ ...
eclipse的第一个struts2插件:Alveole Studio MVC Web Project An eclipse plugin for Struts 2
eclipse第一个struts2插件
官方地址:http://mvcwebproject.sourceforge.net
一:安装
启动eclipse3.3 在help---->software updates----->find and install---->install new features---->New remote site----->输入 http:/ ...
<script>
function svcode(obj,b) {
// var winname = window.open('','_blank');
// window.document.open('text/html', 'replace');
// window.document.writeln(obj.value);
window.document.execCommand('saveas',b,b);
// window.close();
}
</script>
<a
href="javascript:svcod ...
文章分类:Web前端
1.下载的附件有说明
1.把shared、Extensions、codehints三个文件夹复制到一下路径即可
WinXP:
C:\Documents and Settings\Administrator\Application Data\Adobe\Dreamweaver CS5\zh_CN\Configuration
win7:
C:\Users\Administrator\AppData\Roaming\Adobe\Dreamweaver CS5\zh_CN\Configuration
注意:Administrator可能需要替换为 ...
(转自:http://www.cnblogs.com/Terrylee/archive/2007/12/09/the-ultimate-jquery-plugin-list.html)
概述
jQuery 是继 prototype 之后又一个优秀的 Javascript 框架。其宗旨是—写更少的代码,做更多的事情。它是轻量级的 js 库(压缩后只有21k) ,这是其它的 js 库所不及的,它兼容 CSS3,还兼容各种浏览器(IE 6.0+, FF 1.5+, Safari 2.0+, Opera 9.0+)。 jQuery 是一个快速的,简洁的 javaScript 库,使用户能更方便地处理 ...
《Java程序员的推荐阅读书籍》
JavaEye (http://www.iteye.com)
范凯(http://robbin.iteye.com)
作为Java程序员来说,最痛苦的事情莫过于可以选择的范围太广,可以读的书太多,往往容易无所适从。我想就我自己读过的技术书籍中挑选出来 ...
看了网上的,有几种方法:
1 在你的表单页里HEAD区加入这段代码:
<META HTTP-EQUIV="pragma" CONTENT="no-cache"> <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate"> <META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT">
2 ...
java的Comparator和Comparable
当需要排序的集合或数组不是单纯的数字型时,通常可以使用Comparator或Comparable,以简单的方式实现对象排序或自定义排序。
一、Comparator
强行对某个对象collection进行整体排序的比较函数,可以 ...
http://www.blogjava.net/fanyingjie/archive/2010/09/28/333108.html
Oracle、DB2、SQLSERVER、Mysql、Access分页SQL语句梳理
最近把平时在项目中常用到的数据库分页sql总结了下。大家可以贴出分页更高效的sql语句。
sqlserver分页 第一种分页方法
需用到的参数:
pageSize 每页显示多少条数据
pageNumber 页数 从客户端传来
totalRecouds 表中的总记录数 select count (*) from 表名
totalPages 总页数
total ...