<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>JSP应用</title>
<link>/html/edu/jsp/jsp3/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>web开发：详细讲解jsp的内置对象</title>
    <link>/html/edu/jsp/jsp3/38905.html</link>
    <description>1.request对象 客户端的请求信息被封装在request对象中，通过它才能了解到客户的需求，然后做出响应。它是HttpServletRequest类的实例。 序号 方 法 说 明 1 object getAttribute(String name) 返回指定属性的属性值 2 Enumeration getAttributeNames() 返回所有可用属</description>
    <pubDate>2007-08-15</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>搜站长</comments>
</item>
<item>
    <title>Servlet和Filter的url匹配url-pattern</title>
    <link>/html/edu/jsp/jsp3/38904.html</link>
    <description>Servlet和filter是J2EE开发中常用的技术，使用方便，配置简单，老少皆宜。 估计大多数朋友都是直接配置用，也没有关心过具体的细节，今天遇到一个问题，上网查了servlet的规范才发现，servlet和filter中的url-pattern还是有一些文章在里面的，总结了一些东西，放出来供</description>
    <pubDate>2007-08-15</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>搜站长</comments>
</item>
<item>
    <title>jsp超级链接实现&quot;目标另存为&quot;功能</title>
    <link>/html/edu/jsp/jsp3/38112.html</link>
    <description>jsp: % ... @pagelanguage = &quot; java &quot; contentType = &quot; text/html;charset=GB18030 &quot; pageEncoding = &quot; GB18030 &quot; % ! DOCTYPEhtmlPUBLIC&quot;-//W3C//DTDHTML4.01Transitional//EN&quot;&quot;http://www.w3.org/TR/html4/loose.dtd&quot; html head meta http-equiv =&quot;Content-Type&quot; con</description>
    <pubDate>2007-07-08</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>搜站长搜集整理</comments>
</item>
<item>
    <title>如何在JSP中利用java文件操作大全</title>
    <link>/html/edu/jsp/jsp3/38111.html</link>
    <description>文件的建立/检查与删除 %@pagecontentType=&quot;text/html;charset=gb2312&quot;% %@pageimport=&quot;java.io.*&quot;% html head title文件的建立、检查与删除/title /head body % Stringpath=request.getRealPath(&quot;&quot;); //out.println(path); Filef=newFile(path,&quot;File.txt&quot;); //out.pri</description>
    <pubDate>2007-07-08</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>搜站长收集整理</comments>
</item>
<item>
    <title>在jsp客户端限制表单重复提交</title>
    <link>/html/edu/jsp/jsp3/38019.html</link>
    <description>在客户端限制表单重复提交有两种方法： 第一种：在javascript脚本中设置一个标志变量，来区分表单是否已经提交。如果已经提交，则弹出对话框告诉用户“重复提交”。 第二种：在单击提交按钮以后将提交按钮设置为disabled状态，这样用户就无法再提交按钮，客户端也就无</description>
    <pubDate>2007-07-05</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>junli0310的专栏</comments>
</item>
<item>
    <title>Java Servlet API类库中的基本方法介绍</title>
    <link>/html/edu/jsp/jsp3/38016.html</link>
    <description>Java Servlet 开发工具（JSDK）提供了多个软件包，在编写 Servlet 时需要用到这些软件包。其中包括两个用于所有 Servlet 的基本软件包：javax.servlet 和 javax.servlet.http。可从sun公司的Web站点下载 Java Servlet 开发工具。 下面主要介绍javax.servlet.http提供的</description>
    <pubDate>2007-07-05</pubDate>
    <category>JSP应用</category>
    <author>dxaw</author>
    <comments>赛迪网</comments>
</item>
<item>
    <title>java web开发基础：JSP开发入门</title>
    <link>/html/edu/jsp/jsp3/38017.html</link>
    <description>JSP与微软的Active Server Pages 兼容，但它是使用类似HTML的卷标以及Java程序代码段而不是VBScript。当你所使用的网站服务器没有提供本地ASP支持，也就是Apache或Netscape服务器时，你可以考虑使用JSP。虽然你可以取得这些服务器的ASP附加配备模块，但价格相当昂贵，</description>
    <pubDate>2007-07-05</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>java家</comments>
</item>
<item>
    <title>JSP结合XML+XSLT将输出转换HTML</title>
    <link>/html/edu/jsp/jsp3/38018.html</link>
    <description>我们知道 XML+XSLT就可以直接输出到支持XML的浏览器上,如IE 5.0以上,但是,我们还要考虑到有不少浏览器不直接支持XML,在这种情况下,我们需要在服务器上进行转换成html输出到浏览器,这种临时过渡办法恐怕要在一段时间内一直要使用. 使用Jsp 加上tablib标识库,我们可以完</description>
    <pubDate>2007-07-05</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>搜站长</comments>
</item>
<item>
    <title>jsp中任意文字转Unicode的通用模块</title>
    <link>/html/edu/jsp/jsp3/34643.html</link>
    <description>/** ToUnicode.java */ package com.edgewww.util; import java.io.*; /** * 字符串转换成Unicode码的类 * @author 栾金奎 jsp@shanghai.com * @date 2001-03-05 */ public class ToUnicode { /** * 把字符串转换成Unicode码 * @param strText 待转换的字符串 * @param</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>JAVA天堂</comments>
</item>
<item>
    <title>Jsp中的自定义标签由浅到深详细讲解</title>
    <link>/html/edu/jsp/jsp3/34644.html</link>
    <description>一、基本概念： 1.标签(Tag): 标签是一种XML元素，通过标签可以使JSP网页变得简洁并且易于维护，还可以方便地实现同一个JSP文件支持多种语言版本。由于标签是XML元素，所以它的名称和属性都是大小写敏感的 2.标签库(Tag library): 由一系列功能相似、逻辑上互相联系的</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>赛迪网技术社区</comments>
</item>
<item>
    <title>用Jsp来实现文件下载功能的几种方式</title>
    <link>/html/edu/jsp/jsp3/34645.html</link>
    <description>１.最直接最简单的，方式是把文件地址直接放到html页面的一个链接中。这样做的缺点是把文件在服务器上的路径暴露了，并且还无法对文件下载进行其它的控制（如权限）。这个就不写示例了。 ２.在服务器端把文件转换成输出流，写入到response，以response把文件带到浏览器</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>vipcn.com</comments>
</item>
<item>
    <title>JSP和JSF合并 打造完美的Web层应用</title>
    <link>/html/edu/jsp/jsp3/34647.html</link>
    <description>Java在最近几年逐渐升温，随着Java SE 5和Java SE 6的推出，Java的未来更显得无比辉煌。但以Java为基础的JSP在Java SE 5推出之前却一直抬不起头来，这最重要的原因就是JSP虽然功能十分强大，但最大的优点也是它的最大缺点，功能强大就意味着复杂，尤其是设计前端界面的</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>赛迪网技术社区</comments>
</item>
<item>
    <title>改写dhtmlxgrid的calender</title>
    <link>/html/edu/jsp/jsp3/34652.html</link>
    <description>作者：rautinee email：rautinee@yahoo.com.cn 关键字:UIdhtmlxgrid dhtmlxgrid是我在javaeye上面发现的一个不错的东东，并决定把dhtmlxgrid引入到我们的项目中来，但是在看calender部分的时候发现1.2standard版本的有问题，就是在选择日期的时候，点击翻月的小图标，</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>javaresearch</comments>
</item>
<item>
    <title>Template和JSP技术</title>
    <link>/html/edu/jsp/jsp3/34654.html</link>
    <description>一、起源与现状： 关于Template和JSP的起源还要追述到Web开发的远古年代，那个时候的人们用CGI来开发web应用，在一个CGI程序中写HTML标签。 在这之后世界开始朝不同的方向发展：sun公司提供了类似于CGI的servlet解决方案，但是无论是CGI还是servlet都面对同一个问题：</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>CSDN</comments>
</item>
<item>
    <title>Jsp+JavaBean循序渐进教程</title>
    <link>/html/edu/jsp/jsp3/34655.html</link>
    <description>这一节涉及到两个页面，一个donewuser.jsp文件用来实现记录添加操作，另一个文件listuser.jsp文件 用来显示所有的已经注册的用户信息。这两个页面都涉及到了JavaBean的具体调用，还是来看看文件吧， 对于文件中关键代码，都会添加上注释，以方便大家理解。 donewuser.j</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>CSDN</comments>
</item>
<item>
    <title>用servlet将jsp文件内容转为htm</title>
    <link>/html/edu/jsp/jsp3/34656.html</link>
    <description>用servlet将jsp文件内容转为html。代码如下： package examples; import java.io.ByteArrayOutputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStreamWriter; import java.io.PrintWriter; import javax.servlet.Reque</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>搜站长</comments>
</item>
<item>
    <title>在NetBeans 4.1中实践JSP</title>
    <link>/html/edu/jsp/jsp3/34657.html</link>
    <description>一、安装软件 需要在计算机中安装以下软件： NetBeans IDE 4.1 Java Standard Development Kit (JDKTM) 1.4.2 版或 5.0 版 二、WEB服务器 NetBeans IDE 4.1 捆绑了 Tomcat 三、创建新的 Web 应用程序项目 1、选择“文件”“新建项目”。在“类别”下选择 &quot;Web&quot;。在“项</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>java学习室</comments>
</item>
<item>
    <title>利用实例详细讲解JSP的内部对象</title>
    <link>/html/edu/jsp/jsp3/34641.html</link>
    <description>1、Out对象 主要用来向客户端输出各种格式的数据，并且管理应用服务器上的输出缓冲区，Out对象的基类是javax.servlet.jsp.JspWriter类。 Out的主要方法： out.println(DataType);或out.print(DataType); 实例： %@page language=&quot;java&quot; contentType=&quot;text/html;charset</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>搜站长收集</comments>
</item>
<item>
    <title>在JSP中，开发者自己如何编写Tag</title>
    <link>/html/edu/jsp/jsp3/34642.html</link>
    <description>说明： Jsp1.1提供给开发者自己编写Tag的机会，从而使得JSP与HTML的混排更简单，更容易实现 Server端的MVC结构（Model2）. 本站提供了一个非常简单的Custom Tag,您可以试试。 运行环境为Tomcat 1 下载的war 文件放到%TOMCAT_HOME%webapps下 重新启动tomcat 2 访问 http</description>
    <pubDate>2007-06-14</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>搜站长</comments>
</item>
<item>
    <title>JSP实践：使用JSP include机制改进外观</title>
    <link>/html/edu/jsp/jsp3/33850.html</link>
    <description>JSP 最佳实践系列 本系列文章并不打算完整地介绍 JSP 技术，也不打算作为如何构建特殊类型应用程序的指南。相反，系列文章中的每个部分都集中讨论用 JSP 技术编程的某一个方面，将它分成很小的片段。有关 JSP 技术的更广泛介绍或者对如何将它用于特殊结果的更深入研究</description>
    <pubDate>2007-06-01</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>赛迪</comments>
</item>
<item>
    <title>JSP技术在WAP开发中的应用</title>
    <link>/html/edu/jsp/jsp3/33788.html</link>
    <description>首先需要配置WEB服务器 在设计WAP网页时不论你使用的WAP开发工具是UP.SDK或NOKIAWAPTOOKIT或者ERICSSONWAPIDE，你都必须进行WEB服务器设置，故在此将常见的几种WEB服务器的设置介绍如下： (我所用的是Tomcat4.0,即ApacheWebServer.设置方法如下：） 我所用的环境：Apac</description>
    <pubDate>2007-05-30</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>wapease</comments>
</item>
<item>
    <title>编写线程安全的JSP程序</title>
    <link>/html/edu/jsp/jsp3/33382.html</link>
    <description>作者：徐春金，BEA 资深技术顾问，加入BEA中国多年，在门户技术、RFID解决方案上有着丰富的经验。 JSP默认是以多线程方式执行的，这是JSP与ASP，PHP，PERL等脚本语言不一样的地方，也是它的优势之一，但如果不注意多线程中的同步问题，会使所写的JSP程序有难以发现的错</description>
    <pubDate>2007-05-18</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>徐春金</comments>
</item>
<item>
    <title>教你轻松应对JSP连接MySQL数据库问题</title>
    <link>/html/edu/jsp/jsp3/26056.html</link>
    <description>当您面临JSP连接MySQL数据库问题,你首先需要在MySQL数据库里创建一username表，表里面创建两个字符型的字段，字段名分别为：uid，pwd，然后插入几条测试数据。 以下用两种方式来实现JSP连接MySql 数据库 第一种方式，用 JSP 实现: %@ page contentType=&quot;text/html; cha</description>
    <pubDate>2007-04-24</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>搜站长</comments>
</item>
<item>
    <title>北京奥运会无线电频率申请网站开通</title>
    <link>/internet/1/2007010652121.html</link>
    <description>北京２００８年奥运会无线电频率申请网站（ｈｔｔｐ／／ｒｆ．ｂｅｉｊｉｎｇ２００８．ｃｏｍ）日前开通。 北京奥运会无线电管理联席会议办公室、北京奥运会合作伙伴中国网通公司承担申请网站的具体建设和开发工作。 北京奥运会互联网内容与服务赞助商搜狐公司将承担申</description>
    <pubDate>2007-01-06</pubDate>
    <category>国内互联网</category>
    <author>王建新</author>
    <comments>人民网-人民日报</comments>
</item>
<item>
    <title>JSP高访问量下的计数程序</title>
    <link>/html/edu/jsp/jsp3/18217.html</link>
    <description>有时要为每一篇文章统计其点击次数，如果每一次浏览都要更新一次库的话，那性能在访问量很大的情况下，服务器的压力就会很大了，比较好一点的方法就是先将要更新的数据缓存起来，然后每隔一段时间再利用数据库的批量处理，批量更新库。源码如下： CountBean.java /* * C</description>
    <pubDate>2006-10-24</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>blog</comments>
</item>
<item>
    <title>深入剖析JSP和Servlet对中文的处理</title>
    <link>/html/edu/jsp/jsp3/13349.html</link>
    <description>世界上的各地区都有本地的语言。地区差异直接导致了语言环境的差异。在开发一个国际化程序的过程中，处理语言问题就显得很重要了。 这是一个世界范围内都存在的问题，所以， Java 提供了世界性的解决方法。本文描述的方法是用于处理中文的，但是，推而广之，对于处理世</description>
    <pubDate>2006-07-23</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>搜站长</comments>
</item>
<item>
    <title>浅析JSP开发中的对象和范围属性</title>
    <link>/html/edu/jsp/jsp3/13293.html</link>
    <description>在 JSP页面 中的对象，包括用户创建的对象（例如，JavaBean对象）和 JSP 的隐含对象，都有一个范围属性。范围定义了在什么时间内，在哪一个JSP页面中可以访问这些对象。例如，session对象在会话期间内，可以在多个页面中被访问。application对象在整个Web应用程序的生命</description>
    <pubDate>2006-07-16</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>CSDN</comments>
</item>
<item>
    <title>JSP调用JavaBean动态生成柱状图</title>
    <link>/html/edu/jsp/jsp3/12563.html</link>
    <description>我们经常要在网页看到一些动态更新的图片,最常见的莫过于股票的K线图，本文试图通过一个简单的实例，向大家展示如何通过JSP 调用JavaBean在网页上动态生成柱状图。 背景：本人最近在为某统计局开发项目时,涉及到在网页上动态生成图片的问题，费了一天的时间,终于搞定,</description>
    <pubDate>2006-05-30</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>java-cn</comments>
</item>
<item>
    <title>Servlet/JSP服务器端的重定向</title>
    <link>/html/edu/jsp/jsp3/12506.html</link>
    <description>通常，在一个设计良好的Web应用中，都会综合使用Servlet和JSP技术。Servlet控制业务流转，JSP则负责业务处理结果的显示。此时，将大量用到重定向技术。 重定向技术可以分为两类，一类是客户端重定向，一类是服务器端重定向。客户端重定向可以通过设置特定的HTTP头，或</description>
    <pubDate>2006-05-20</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>csdn</comments>
</item>
<item>
    <title>在网页中控制wmplayer播放器</title>
    <link>/html/edu/jsp/jsp3/11880.html</link>
    <description>〈!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;〉 〈html〉 〈head〉 〈link href=&quot;style/style.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;〉 〈script language=&quot; JavaScript &quot;〉 var state; //初始化 function playerinit() { player.url=&quot;mp3.m3u&quot;;</description>
    <pubDate>2006-04-03</pubDate>
    <category>JSP应用</category>
    <author>秩名</author>
    <comments>CSDN</comments>
</item>
<item>
    <title>解决JSP开发Web程序中的中文问题</title>
    <link>/html/edu/jsp/jsp3/11018.html</link>
    <description>这段时间经常看到有人问到web开发中怎么中文总是?号。原因其实很简单，因为大家大多用的是tomcat服务器，而tomcat服务器的默认编码为 iso-8859-1(西欧字符)。就是因为iso-8859-1(西欧字符)编码造成了我们经常看到？号。 方法一：最简单也是用的最多的方法。 ＜%@ page</description>
    <pubDate>2006-03-15</pubDate>
    <category>JSP应用</category>
    <author>rickhunter</author>
    <comments>blogjava</comments>
</item>
<item>
    <title>开发一个调试JSP的Eclipse插件</title>
    <link>/html/edu/jsp/jsp3/10606.html</link>
    <description>本文通过开发一个JSP 编辑器插件的示例，介绍了 Eclipse 中设置 JSP 断点的方法，以及如何远程调试 JSP。作为基础知识，本文的前两部分描述了 JAVA Debug 和 JSR-45 的基本原理。 环境要求: 本文的代码是在 Eclipse3.0.0，JDK1.4.2 和 Tomcat5.0.5 上测试过的。 JAVA 调</description>
    <pubDate>2006-02-09</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>IBM</comments>
</item>
<item>
    <title>JSP 2.0下的动态内容缓存分析讲解</title>
    <link>/html/edu/jsp/jsp3/9661.html</link>
    <description>在Web应用中，内容缓存是最普通的优化技术之一，并且能够很容易地实现。例如，可以使用一个自定义地JSP标签——我们将之命名为＜jc:cache＞——由＜jc:cache＞和＜/jc:cache＞将每一个需要被缓存的页面片段封装起来。任何自定义标签可以控制它所包含部分 (也即预先封装</description>
    <pubDate>2006-01-18</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>matrix</comments>
</item>
<item>
    <title>基于JDBC的数据库连接池技术研究与应用</title>
    <link>/html/edu/jsp/jsp3/9600.html</link>
    <description>引言 近年来，随着Internet/Intranet建网技术的飞速发展和在世界范围内的迅速普及，计算机 应用程序已从传统的桌面应用转到Web应用。基于B/S（Browser/Server）架构的3层开发模式逐渐取代C/S（Client/Server）架构的开发模式，成为开发企业级应用和电子商务普遍采用的</description>
    <pubDate>2006-01-14</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>使用JSP/Servlet上载文件</title>
    <link>/html/edu/jsp/jsp3/9543.html</link>
    <description>使用 JSP/ Servlet上载文件正成为一项常用的任务。以下是一个简单的例程，使用了jspsmart的一个免费的组件。你可以在JSPSMART站点进行下载。 1. Html File html body script LANGUAGE=&quot;javascript&quot; SRC=&quot;JSFunction.js&quot; /script script language=&quot;JavaScript&quot; !-- func</description>
    <pubDate>2006-01-12</pubDate>
    <category>JSP应用</category>
    <author>碧波山庄</author>
    <comments>http://ctsvb.126.com 　</comments>
</item>
<item>
    <title>jspSmartUpload上传下载全攻略</title>
    <link>/html/edu/jsp/jsp3/1080.html</link>
    <description>一、安装篇 jspSmartUpload是由www.jspsmart.com网站开发的一个可免费使用的全功能的文件上传下载组件，适于嵌入执行上传下载操作的JSP文件中。该组件有以下几个特点： 1、使用简单。在JSP文件中仅仅书写三五行JAVA代码就可以搞定文件的上传或下载，方便。 2、能全程控</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>Tomcat5.x中的虚拟主机配置方法</title>
    <link>/html/edu/jsp/jsp3/1083.html</link>
    <description>摘要：本文介绍了一种开发基于Web的管理信息系统的实现框架。利用JSP/Servlet技术，结合MVC设计模式，使得开发过程更加灵活，更加易于维护。 关键词：管理信息系统，JSP，Servlet，MVC设计模式，JDBC 1、 引言 管理信息系统（MIS）是一个由人、计算机等组成的能进行信</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>利用iText在JSP中生成PDF报表</title>
    <link>/html/edu/jsp/jsp3/1084.html</link>
    <description>问题的由来 前不久做了一个通过JSP生成PDF报表的小项目，算得上开了一次眼界。企业的一些信息通过网络形成Html报表，虽然IE可以直接打印显示在其中的内容，但是从界面上来看，如果直接将Html的显示结果打印出来，显得不太美观。如果将它转成PDF文件再打印，则打印效果</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP调用JavaBean在网页上动态生成柱状图</title>
    <link>/html/edu/jsp/jsp3/1053.html</link>
    <description>我们经常要在网页看到一些动态更新的图片,最常见的莫过于股票的K线图，本文试图通过一个简单的实例，向大家展示如何通过JSP 调用JavaBean在网页上动态生成柱状图。 背景：本人最近在为某统计局开发项目时,涉及到在网页上动态生成图片的问题，费了一天的时间,终于搞定,为</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>jsp源码实例5（cookie）</title>
    <link>/html/edu/jsp/jsp3/1012.html</link>
    <description>package coreservlets; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; /** Sets six cookies: three that apply only to the current * session (regardless of how long that session lasts) * and three that persist for an hour (regar</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>JSP与SQL SERVER的留言本</title>
    <link>/html/edu/jsp/jsp3/1078.html</link>
    <description>!--add_message.jsp-- %@ page import=&quot;java.sql.*&quot; % HTML HEAD TITLEadd message into table /TITLE /HEAD BODY % String name=request.getParameter(&quot;name&quot;); String mail=request.getParameter(&quot;mail&quot;); String title=request.getParameter(&quot;title&quot;); String conte</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>轻松使用JSP生成饼图</title>
    <link>/html/edu/jsp/jsp3/1076.html</link>
    <description>作者： BUILDER.COM JSP提供了很多简单实用的工具，其中包括从 数据库 中读出数据，发送数据，并能够把结果显示在一个饼状图形。现在让我们看看这一简单而实用的方法。 你所需要的东西 转自:动态网制作指南 www.knowsky.com 为了能正确运行这一文章相关的范例，你必须</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>在jsp中用bean和servlet联合实现用户注册、登录</title>
    <link>/html/edu/jsp/jsp3/1074.html</link>
    <description>声明：作者原创，版权所有。未经授权，不得转载 在jsp中用bean和servlet联合实现用户注册、登录 作者：imagebear 版权：imagebear 本例需要的软件和运行环境： 1、Windows2000 Server操作系统 2、jdk1.4 3、JCreator2.5（java 源码 编辑调试器，吐血推荐！） 4、Macrom</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>jsp留言板源代码三: 给jsp初学者.</title>
    <link>/html/edu/jsp/jsp3/1028.html</link>
    <description>作 者: precom (皮蛋) reply.jsp ==================================== htmlhead META content=&quot;text/html; charset=gb2312 &quot; http-equiv=Content-Type title张家界电话黄页(网上114)/title/head style type=&quot;text/css&quot; !-- BODY { FONT-FAMILY: &quot;宋体&quot;,&quot;Arial Narrow</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>jsp留言板源代码二: 给jsp初学者.</title>
    <link>/html/edu/jsp/jsp3/1026.html</link>
    <description>作 者: precom (皮蛋) guestbook.jsp =========================== htmlhead META content=&quot;text/html; charset=gb2312 &quot; http-equiv=Content-Type title张家界电话黄页(网上114)/title/head style type=&quot;text/css&quot; !-- BODY { FONT-FAMILY: &quot;宋体&quot;,&quot;Arial Narrow&quot;, &quot;T</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>jsp留言板源代码一: 给jsp初学者</title>
    <link>/html/edu/jsp/jsp3/1023.html</link>
    <description>jsp留言板源代码一: 给jsp初学者. 作 者: precom (皮蛋) oracle数据表创建. create table guestbook ( lw_title varchar2(100) not null, --留言主题 lw_author varchar2(20) not null, --网上大名 pk author_http varchar2(40) , --主页地址 author_email varchar2(40</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>jsp计数器-bean文件</title>
    <link>/html/edu/jsp/jsp3/1021.html</link>
    <description></description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>jsp计数器-jsp文件</title>
    <link>/html/edu/jsp/jsp3/1019.html</link>
    <description>HTML HEAD TITLEJSP Bean Example/TITLE /HEAD BODY !-- Set the scripting language to java -- %@ page language=&quot;java&quot; % !-- Instantiate the Counter bean with an id of &quot;counter&quot; -- jsp:useBean id=&quot;counter&quot; scope=&quot;session&quot; class=&quot;Counter&quot; / !-- Set the b</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>邮件发送简单例子-jsp文件</title>
    <link>/html/edu/jsp/jsp3/1018.html</link>
    <description>MailExample.jsp html head titleJSP JavaMail Example /title /head body %@ page import=&quot;java.util.*&quot; % %@ page import=&quot;javax.mail.*&quot; % %@ page import=&quot;javax.mail.internet.*&quot; % %@ page import=&quot;javax.activation.*&quot; % % String host = &quot;yourmailhost&quot;; Strin</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>邮件发送简单例子-html文件</title>
    <link>/html/edu/jsp/jsp3/1016.html</link>
    <description>html head titleJavaMail Form/title /head body form action=&quot;/purejsp/MailExample.jsp&quot; method=&quot;post&quot; table cellspacing=&quot;2&quot; cellpadding=&quot;2&quot; border=&quot;1&quot; tr tdTo:/td td input type=&quot;text&quot; name=&quot;to&quot; size=&quot;30&quot; maxlength=&quot;30&quot; /td /tr tr tdFrom:/td td input ty</description>
    <pubDate>2005-08-23</pubDate>
    <category>JSP应用</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>

</channel>
</rss>
