<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>JSP技巧</title>
<link>/html/edu/jsp/jsp2/index.html</link>
<description>编程开发 / JSP / JSP技巧</description>
<language>zh-cn</language>
<generator>&lt;a href='http://www.souzz.net' target='_blank'&gt;搜站长&lt;/a&gt;</generator>
<webmaster>lyjrich@sina.com</webmaster>
<item>
    <title>jsp验证码生成以及刷新</title>
    <link>/html/edu/jsp/jsp2/34651.html</link>
    <description>关于jsp验证码生成，显示，验证和刷新： 1:四位数据的验证图片生成，用servlet实现 2:在web.xmlli配置servlet 3:页面上显示servlet生成的图片 4:关于验证码输入数据的验证 5:验证码的刷新 ——————————————————————– 1：四位数据的验证图片生成，</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP技巧</category>
    <author>秩名</author>
    <comments>搜站长</comments>
</item>
<item>
    <title>提升JSP页面响应速度的七大秘籍绝招</title>
    <link>/html/edu/jsp/jsp2/34650.html</link>
    <description>方法一：在servlet的init()方法中缓存数据 当应用服务器初始化servlet实例之后，为客户端请求提供服务之前，它会调用这个servlet的init()方法。在一个servlet的生命周期中，init()方法只会被调用一次。通过在init()方法中缓存一些静态的数据或完成一些只需要执行一次的</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP技巧</category>
    <author>秩名</author>
    <comments>赛迪网</comments>
</item>
<item>
    <title>如何解决JSP页面显示乱码问题</title>
    <link>/html/edu/jsp/jsp2/34648.html</link>
    <description>一、JSP页面显示乱码 二、表单提交中文时出现乱码 三、数据库连接时出现乱码 大家在JSP的开发过程中，经常出现中文乱码的问题，可能一至困扰着您，我现在把我在JSP开发中遇到的中文乱码的问题及解决办法写出来供大家参考。 一、JSP页面显示乱码 下面的显示页面(display</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP技巧</category>
    <author>秩名</author>
    <comments>赛迪网技术社区</comments>
</item>
<item>
    <title>java中文件操作大全</title>
    <link>/html/edu/jsp/jsp2/33372.html</link>
    <description>本文为本人在工作学习中的总结，每个方法都经过测试，记在博客上一方面是为了自己日后工作方便，另一方面是为了给大家提供方便，节约时间。 一.获得控制台用户输入的信息 /***/ /** 获得控制台用户输入的信息 * @return * @throws IOException */ public StringgetInpu</description>
    <pubDate>2007-05-18</pubDate>
    <category>JSP技巧</category>
    <author>秩名</author>
    <comments>扬州梦</comments>
</item>
<item>
    <title>dom4j学习总结（一）</title>
    <link>/html/edu/jsp/jsp2/33370.html</link>
    <description>（一）创建Document的基本操作 /** * xml基本操作 */ public void BaseOperation(){ //创建一个document Document document=DocumentHelper.createDocument(); //创建根结点 Element root=document.addElement(&quot;root&quot;); //为根结点添加一个book节点 Element book1=root</description>
    <pubDate>2007-05-18</pubDate>
    <category>JSP技巧</category>
    <author>秩名</author>
    <comments>扬州梦</comments>
</item>
<item>
    <title>JSP中文问题大汇总</title>
    <link>/html/edu/jsp/jsp2/33369.html</link>
    <description>以下总结这段时间以来遇到的中文问题汇集： 注：以下“后台”字眼，相当于在servlet内，或者某一个类内，或者struts的action内。 1.一字符串在后台用system.out.println输出正常，保存在session里到JSP页面显示乱码 最初的乱码问题. 原因：似乎是默认的JSP页面采用8859</description>
    <pubDate>2007-05-18</pubDate>
    <category>JSP技巧</category>
    <author>秩名</author>
    <comments>漆黑之翼</comments>
</item>
<item>
    <title>谈select列表框</title>
    <link>/html/edu/jsp/jsp2/11392.html</link>
    <description>在JSP中用到select列表框就如家常便饭般的常见! 以下是我在JSP页面中对此的一些心得(通常会用到Struts+Hebernate+Spring): 我想大概有以下几种方法可以在JSP中得到我们想要的select列表框 1:通过使用HTML中使用普通的select定义 selectname = select optionvalue = 1 a</description>
    <pubDate>2006-03-20</pubDate>
    <category>JSP技巧</category>
    <author>秩名</author>
    <comments>搜站长</comments>
</item>
<item>
    <title>JSP作为客户方访问CORBA服务对象</title>
    <link>/html/edu/jsp/jsp2/11393.html</link>
    <description>结合J2EE和CORBA可以充分利用两者的优点建立性能更好功能更强的应用系统，例如可以使用C++实现的CORBA对象作为业务处理构件，形成高性能业务逻辑层，在JSP中访问CORBA构件建立展现层。 下面我们就一起来看一个在JSP中访问CORBA服务对象的例子。 软件选择： CORBA服务方</description>
    <pubDate>2006-03-20</pubDate>
    <category>JSP技巧</category>
    <author>秩名</author>
    <comments>搜站长</comments>
</item>
<item>
    <title>将JSP在内存生成的图片显示到页面</title>
    <link>/html/edu/jsp/jsp2/9605.html</link>
    <description>Imaging_ToWeb.jsp %@ page autoFlush=&quot;false&quot; import=&quot;java.awt.*,java.awt.image.*,com.sun.image.codec.jpeg.*,java.util.*&quot;% % String ImageStr = request.getParameter(&quot;ID_Text&quot;); if(ImageStr==null || ImageStr.equals(&quot;&quot;)) { response.setContentType(&quot;text/h</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>提升JSP应用程序的七大绝招</title>
    <link>/html/edu/jsp/jsp2/9606.html</link>
    <description>你时常被客户抱怨JSP页面响应速度很慢吗？你想过当客户访问次数剧增时，你的WEB应用能承受日益增加的访问量吗？本文讲述了调整JSP和servlet的一些非常实用的方法，它可使你的servlet和JSP页面响应更快，扩展性更强。而且在用户数增加的情况下，系统负载会呈现出平滑上长</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>建立JSP操作以提高数据库访问的效率</title>
    <link>/html/edu/jsp/jsp2/9607.html</link>
    <description>从服务器端促进程序快速开发的Java Server Pages (JSP)决定它成为一种广为流行的工具。虽然呆板的一面仍然存在，然而无论它包含多少缺点，JSP能够为Web程序设计者提供很多东西，尤其是与数据库的输入和输出操作与数据的处理。 通过JSP来进行数据库访问不需要太多的引导</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>改变JSP的文件后缀</title>
    <link>/html/edu/jsp/jsp2/9608.html</link>
    <description>今天闲来无事,突然想到一个问题,能不能把访问JSP文件的后缀换成我自己的后缀呢?经过自己的一些调试,终于成功啦.哈哈哈。 好高兴..... 首先,在WEB.XM里配置 servlet servlet-nametestsuffix/servlet-name servlet-classmytest.TestSuffix/servlet-class /servlet servlet</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>Servlet开发中JDBC的高级应用</title>
    <link>/html/edu/jsp/jsp2/9610.html</link>
    <description>连结数据库 JDBC使用数据库URL来说明数据库驱动程序。数据库URL类似于通用的URL，但SUN 在定义时作了一点简化，其语法如下： Jdbc::[node]/[database] 其中子协议（subprotocal）定义驱动程序类型，node提供网络数据库的位置和端口号，后面跟可选的参数。例如： String</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>可以使用多个jsp定制标签在JSP中达到接近servelt的处理效果</title>
    <link>/html/edu/jsp/jsp2/9611.html</link>
    <description>jsp 可以令菜鸟直接写简单的网页程序（网友言），而servlet却有jsp所不及的集成程度和易维护性。两者在JAVA/BS系统中无法简单取代，但同时并存却令开发者陷入近两年来最常见的陷阱中：必须在一个即使是相对简单的项目中维持多套程序模式的方案，显然，这是高成本的。本</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP应用程序开发中安全问题的实例解析</title>
    <link>/html/edu/jsp/jsp2/9613.html</link>
    <description>一、概述 当网络编程越来越方便，系统功能越来越强大，安全性却指数倍地下降。这恐怕就是网络编程的不幸和悲哀了。各种动态内容生成环境繁荣了WWW，它们的设计目标就是为了给开发者更多的力量，给最终用户更多的方便。正因为如此，系统设计师和开发者必须明确地把安全问</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>hf1650 的 Blog</comments>
</item>
<item>
    <title>windows中双击jar文件即可运行写法</title>
    <link>/html/edu/jsp/jsp2/9614.html</link>
    <description>下面通过一个例子来说明，这个例子包括2个java文件和一个mf文件: 文件1：Frame1.java package testjar; import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Frame1 extends JFrame { JPanel contentPane; BorderLayout borderLayout1 =</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP报表打印的一种简单解决方案</title>
    <link>/html/edu/jsp/jsp2/9615.html</link>
    <description>1. 在Word或Excel中制作报表的样式。 Excel的行高和列宽单位无法用mm或cm表示。 需要计算。在1024*768下，1CM约为38像素。 以此为基准，可计算并控制报表的行列位置。 2. 在Word中设置“表格——标题行重复”。 在Excel中设置“文件——页面设置——工作表——打印标题</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP如何保存用户上次登录时间</title>
    <link>/html/edu/jsp/jsp2/9616.html</link>
    <description>代码是以 Access 库为例,日期对象使用的java.sql.Date()类型，因为据测试 java .util.Date类型是不能添加到DateTime类型的字段中的：作者：淘特网 import java.sql.*; import java.text.*; /** * 代码 */ public class MSAccessDB { public static SimpleDateFormat sd</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>http://www.tot.name</comments>
</item>
<item>
    <title>使用jsp生成彩色汉字验证码</title>
    <link>/html/edu/jsp/jsp2/9617.html</link>
    <description>一些网站采用了字母和数字的验证码，数字和字母加起来一共30多个，如果有心，还是能够通过方法识别出来。 我在网上看到一篇文章&quot;jsp彩色验证码&quot;，我进行了加强，生成的验证码内容为汉字，可以方便应用在面向汉语网民的网站认证上。 当然，我还看到别人考虑的几种方法：</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>高效的jsp分页查询</title>
    <link>/html/edu/jsp/jsp2/9618.html</link>
    <description>Jsp如下： ********************** %@ page language=&quot;java&quot; import=&quot;java.util.*,java.sql.*&quot; % %@ page contentType=&quot;text/html;charset=gb2312&quot;% jsp:useBean id=&quot;cn&quot; scope=&quot;page&quot; class=&quot;myConnection.Conn&quot; /!--引用数据库操作的bean，自己完成，这里不再赘述--</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JavaBean实现多文件上传的两种方法</title>
    <link>/html/edu/jsp/jsp2/9604.html</link>
    <description>摘要：本文介绍了JavaBean实现多个文件上传的两种方法，分别是使用http协议和ftp协议实现。首先讲述了http协议传送多个文件的基本格式和实现上传的详细过程，之后简单介绍了使用ftpclient 类实现了ftp方式的上传，最后对这两种方法进行了比较。 关键字：JavaBean 、http</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>加快JDBC设计中JSP访问数据库</title>
    <link>/html/edu/jsp/jsp2/9603.html</link>
    <description>以前，我们已经提到，JSP程序都是模块，并且具有强大的表达-请求(presentation-request)功能。建立一个完美的数据库访问是一个具有挑战的过程，而JDBC接口能够很好地完成这一过程。然而，嵌入于JSP代码中的JDBC代码，与SQL命令嵌入在JDBC一样，可以充分利用JSP的功能，</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP避免Form重复提交的三种方案</title>
    <link>/html/edu/jsp/jsp2/9602.html</link>
    <description>1 javascript ，设置一个变量，只允许提交一次。 script language=&quot;javascript&quot; var checkSubmitFlg = false; function checkSubmit() { if (checkSubmitFlg == true) { return false; } checkSubmitFlg = true; return true; } document.ondblclick = function docondb</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>JSP和Struts解决用户退出问题</title>
    <link>/html/edu/jsp/jsp2/9601.html</link>
    <description>在一个有密码保护的Web应用中，正确处理用户退出过程并不仅仅只需调用HttpSession的invalidate()方法。现在大部分浏览器上都有后退和前进按钮，允许用户后退或前进到一个页面。如果在用户在退出一个Web应用后按了后退按钮浏览器把缓存中的页面呈现给用户，这会使用户产</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP彩色验证码</title>
    <link>/html/edu/jsp/jsp2/9609.html</link>
    <description>生成有4个随机数字和杂乱背景的图片，数字和背景颜色会改变，服务器端刷新（用history.go(-1)也会变） 产生验证码图片的文件-----image.jsp %@ page contentType=&quot;image/jpeg&quot; import=&quot;java.awt.*,java.awt.image.*,java.util.*,javax.imageio.*&quot; % %! Color getRandCol</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>jspsmartupload组件修改经验谈</title>
    <link>/html/edu/jsp/jsp2/9544.html</link>
    <description>最近在JSP程序开发过程中，发现了很严重的Java内存溢出问题。我采用了Resin服务器自动重启的方法，临时保证了网站的正常运行。但是我想去寻找问题的症结之所在，我想一定是JSP程序或Java程序没有及时地释放内存，但到底是哪些类的哪些对象没有被释放？ 我认真的看了一下</description>
    <pubDate>2006-01-12</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>www.yourblog.org</comments>
</item>
<item>
    <title>JSP显示内容缓存技巧</title>
    <link>/html/edu/jsp/jsp2/4683.html</link>
    <description>首先想到的一种办法,是采用 java.net的URLConnection把服务器上的jsp抓过来做缓存,不过我觉得这样做太见外了,自己服务器上的东西,为何要用HTTP去访问.于是想另外一个办法，把jsp的out对象的输出控制到自己希望的地方.比如输出到静态文件,又或者保存成全局的字符串变量.</description>
    <pubDate>2005-10-29</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>如何使用JSP连接DB2数据库</title>
    <link>/html/edu/jsp/jsp2/3304.html</link>
    <description>%@page import=&quot;java.sql.*&quot; import =&quot;java.util.*&quot; import =&quot;java.io.*&quot; contentType=&quot;text/html; charset=gb2312&quot; % html head title使用Db2 数据库 /title meta name=&quot;GENERATOR&quot; content=&quot;Microsoft FrontPage 4.0&quot; meta name=&quot;ProgId&quot; content=&quot;FrontPage.Editor.</description>
    <pubDate>2005-10-11</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>Java中对文件的读写操作之比较</title>
    <link>/html/edu/jsp/jsp2/3305.html</link>
    <description>Java 中对文件的读写操作之比较 作者：Jeru Liu 日期：November 29,2000 版本：1.0 纪念在chinaasp积分过一百呕心原创一篇（Java 中对文件的读写操作之比较）拿分好难呀，555~~~，不知道那些几千分的老妖们是怎么灌水的。 Java 对文件进行读写操作的例子很多，让初学者</description>
    <pubDate>2005-10-11</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP应用的安全问题</title>
    <link>/html/edu/jsp/jsp2/3306.html</link>
    <description>一、概述 当网络编程越来越方便，系统功能越来越强大，安全性却指数倍地下降。这恐怕就是网络编程的不幸和悲哀了。各种动态内容生成环境繁荣了WWW，它们的设计目标就是为了给开发者更多的力量，给最终用户更多的方便。正因为如此，系统设计师和开发者必须明确地把安全</description>
    <pubDate>2005-10-11</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>用JSP下载word文件（不会直接用IE打开）</title>
    <link>/html/edu/jsp/jsp2/3307.html</link>
    <description>%@page import=&quot;java.util.*&quot;% %@page import=&quot;java.io.*&quot;% %@page import=&quot;java.net.*&quot;% % String filename = &quot;&quot;; if (request.getParameter(&quot;file&quot;) != null) { filename =request.getParameter(&quot;file&quot;); } response.setContentType(&quot;application/msword&quot;); response</description>
    <pubDate>2005-10-11</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP之plugin的使用</title>
    <link>/html/edu/jsp/jsp2/3308.html</link>
    <description>jsp:plugin Action 使您能插入所需的特定的浏览器的OBJECT或EMBED元素来指定浏览器运行一个JAVA Applet所需的插件。 语法： ＜jsp:plugin type=&quot;bean|applet&quot; code=&quot;classFileName&quot; codebase=&quot;classFileDirectoryName&quot; [ name=&quot;instanceName&quot; ] [ archive=&quot;URIToArchi</description>
    <pubDate>2005-10-11</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>Servlet及JSP中的多线程同步问题</title>
    <link>/html/edu/jsp/jsp2/3309.html</link>
    <description>Servlet/JSP技术和ASP、PHP等相比，由于其多线程运行而具有很高的执行效率。由于Servlet/JSP默认是以多线程模式执行的，所以，在编写代码时需要非常细致地考虑多线程的同步问题。然而，很多人编写Servlet/JSP程序时并没有注意到多线程同步的问题，这往往造成编写的程序</description>
    <pubDate>2005-10-11</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>Servlet、Jsp中的多国语言显示</title>
    <link>/html/edu/jsp/jsp2/3310.html</link>
    <description>因为一直不信Java竟会有不能混排显示多国语言的BUG，这个周末研究了一下Servlet、Jsp的多国语言显示的问题，也就是Servlet的多字符集问题，由于我对字符集的概念还不是很清晰所以写出的东西未必是准确的，我是这样理解Java中的字符集的：在运行时，每个字符串对象中存</description>
    <pubDate>2005-10-11</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP实现浏览器关闭cookies情况下的会话管理</title>
    <link>/html/edu/jsp/jsp2/3311.html</link>
    <description>通常，会话管理是通过服务器将 Session ID 作为一个 cookie 存储在用户的 Web 浏览器中来唯一标识每个用户会话。如果浏览器不支持 cookies，或者将浏览器设置为不接受 cookies，我们可以通过 URL 重写来实现会话管理。 实质上 URL 重写是通过向 URL 连接添加参数，并把</description>
    <pubDate>2005-10-11</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>用JSP分析multipart/form-data基于表单的文件上传</title>
    <link>/html/edu/jsp/jsp2/671.html</link>
    <description>% int iTotalByte,iTotalRead,iReadByte; iTotalByte=request.getContentLength(); iTotalRead=0; iReadByte=0; byte[] Buffer=new byte[iTotalByte]; if(iTotalByte0) { for(;iTotalReadiTotalByte;iTotalRead+=iReadByte) { try { iReadByte=request.getInputStream(</description>
    <pubDate>2005-08-18</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>MySQL实现分页JSP＋JAVABEAN实现</title>
    <link>/html/edu/jsp/jsp2/672.html</link>
    <description>关键代码是MySQL下的一条命令： select * from 表名 limit 第几页（0开始）,每页的记录数; 换句话说，只要改变第几页这个变量就能实现分页的浏览了。 1。建立2个Bean，一个是负责 数据库 连接，一个负责分页。 package DBConn; import java.sql.*; import java.lang.*;</description>
    <pubDate>2005-08-18</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>mascotzhuang|http://mascotzhuang.go.nease.net</comments>
</item>
<item>
    <title>JSP/Servlet应用程序优化八法</title>
    <link>/html/edu/jsp/jsp2/673.html</link>
    <description>你的J2EE应用是不是运行的很慢？它们能不能承受住不断上升的访问量？本文讲述了开发高性能、高弹性的JSP页面和Servlet的性能优化技术。其意思是建立尽可能快的并能适应数量增长的用户及其请求。在本文中，我将带领你学习已经实践和得到证实的性能调整技术，它将大大地提</description>
    <pubDate>2005-08-18</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>用JSTL实现JSP应用程序快速开发</title>
    <link>/html/edu/jsp/jsp2/674.html</link>
    <description>在这篇文章中，我将为大家介绍一种基于JSP且灵活有趣的技术，那就是JSTL.JSTL全称为Java Server Pages Standard Tag Library.虽然JSP已经变的非常流行，但JSTL在基于SQL 数据库 的简单、快速的前后台开发中还是没有被广泛的应用。一旦你了解了JSTL，你就会了解到它的优</description>
    <pubDate>2005-08-18</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP中的字符替换函数 str_replace() 实现！</title>
    <link>/html/edu/jsp/jsp2/675.html</link>
    <description>// // StrReplace.java // package forum; import java.util.*; /** * Title: * Description: * Copyright: Copyright (c) 2001 * Company: * @author * @version 1.0 */ public class StrReplace { public StrReplace() { } public String str_replace(String from,St</description>
    <pubDate>2005-08-18</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>使用Ant和Tomcat创建Web应用</title>
    <link>/html/edu/jsp/jsp2/676.html</link>
    <description>使用何种技术 我使用Tomcat 4的Servlet/JPS容器技术实现一个Web应用程序。这个过程中仍然有许多不确定的事，在多种可行的技术中选一种可不是一件容易的事。这篇文章中，我选择尽量简单的解决方案，混合使用Java Server Pages(JSPs)以及Java。 应当尽量避免使用JSPs实现</description>
    <pubDate>2005-08-18</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP显示中文问题的解决方案</title>
    <link>/html/edu/jsp/jsp2/677.html</link>
    <description>这两天在win98下装apache1.3.9加jserv和gnujsp1.0,jdk1.2.2,jsdk2.0 发现中文无法正常显示。要么乱码,要么出错。 经网友提醒，总结了以下几条方法。 1：修改区域设置:在控制面版中选择区域设置，设为英语（美国）?nbsp; 然后重起。一切就都正常。 2：在jsp页中加入一条</description>
    <pubDate>2005-08-18</pubDate>
    <category>JSP技巧</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP实现的验证码</title>
    <link>/html/edu/jsp/jsp2/670.html</link>
    <description>image.jsp %@ page contentType=&quot;image/jpeg&quot;% %@ page import=&quot;java.awt.*&quot;% %@ page import=&quot;java.awt.image.*&quot;% %@ page import=&quot;java.util.*&quot;% %@ page import=&quot;javax.imageio.*&quot;% % //在内存中创建图象 int iWidth=130,iHeight=18; BufferedImage image=new Buffe</description>
    <pubDate>2005-08-18</pubDate>
    <category>JSP技巧</category>
    <author>数字金刚</author>
    <comments>CSDNBlog|http://blog.csdn.net/gjd111686</comments>
</item>

</channel>
</rss>
