随笔分类 -  JAVA开发经验汇总

Tomcat5中JSP页面不能编译问题的解决
摘要:在一台已经装好Tomcat5的服务器上发布我的JSP页面的时候,出现了页面不能编译的错误,详细显示如下: HTTP Status 500 - --------------------------------------------------------------------------------type Exception reportmessage description The ser... 阅读全文
posted @ 2010-03-04 16:25 xinxinbb 阅读(724) 评论(0) 推荐(1)
string int Integer之间的转换
摘要:string int Integer之间的转换 如何将字串 String 转换成整数 int? int i = Integer.valueOf(my_str).intValue(); int i=Integer.parseInt(str);如何将字串 String 转换成Integer ? Integer integer=Integer.valueOf(str);如何将整数 int 转换... 阅读全文
posted @ 2010-01-22 10:09 xinxinbb 阅读(328) 评论(0) 推荐(0)
AJAX
摘要:JS:if (window.ActiveXObject) { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } else if (window.XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); } xmlHttp.onreadystatechange = function() { if(xmlH... 阅读全文
posted @ 2009-10-15 11:16 xinxinbb 阅读(161) 评论(0) 推荐(0)
c标签详解
摘要:<%@pagelanguage="java"import="java.util.*,org.springframework.beans.factory.BeanFactory"pageEncoding="UTF-8"%><%@tagliburi="http://java.sun.com/jsp/jstl/core"prefix="c"%><%@pagelanguage... 阅读全文
posted @ 2009-08-11 16:32 xinxinbb 阅读(774) 评论(0) 推荐(0)