﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>语源科技BlogJava-BorderJ's Blog</title><link>http://www.blogjava.net/border/</link><description>    ---   java   FreeBsd   Web3D open-sources 
</description><language>zh-cn</language><lastBuildDate>Sat, 18 Apr 2026 11:14:13 GMT</lastBuildDate><pubDate>Sat, 18 Apr 2026 11:14:13 GMT</pubDate><ttl>60</ttl><item><title>Writely Blog 可以注册了</title><link>http://www.blogjava.net/border/archive/2006/08/18/64267.html</link><dc:creator>BorderJ</dc:creator><author>BorderJ</author><pubDate>Fri, 18 Aug 2006 01:53:00 GMT</pubDate><guid>http://www.blogjava.net/border/archive/2006/08/18/64267.html</guid><wfw:comment>http://www.blogjava.net/border/comments/64267.html</wfw:comment><comments>http://www.blogjava.net/border/archive/2006/08/18/64267.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/border/comments/commentRss/64267.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/border/services/trackbacks/64267.html</trackback:ping><description><![CDATA[
		<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://writely.blogspot.com/2006/08/writely-registration-is-now-open.html" target="_blank">Writely Blog</a> is proud to announce that Writely access is now free for everyone. Just <a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.writely.com/" target="_blank">sign up</a> for an account.<br /><br />Writely is a word processing tool acquired by Google this year. Since it was acquired, users were required to have an invitation to try the product. You can read my <a onclick="return top.js.OpenExtLink(window,event,this)" href="http://googlesystem.blogspot.com/2006/07/writely-advanced-rich-text-editor.html" target="_blank">negative review</a>, but there are many people who like Writely.<img src ="http://www.blogjava.net/border/aggbug/64267.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/border/" target="_blank">BorderJ</a> 2006-08-18 09:53 <a href="http://www.blogjava.net/border/archive/2006/08/18/64267.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>request.getSession() 方法</title><link>http://www.blogjava.net/border/archive/2006/07/31/61073.html</link><dc:creator>BorderJ</dc:creator><author>BorderJ</author><pubDate>Mon, 31 Jul 2006 11:46:00 GMT</pubDate><guid>http://www.blogjava.net/border/archive/2006/07/31/61073.html</guid><wfw:comment>http://www.blogjava.net/border/comments/61073.html</wfw:comment><comments>http://www.blogjava.net/border/archive/2006/07/31/61073.html#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://www.blogjava.net/border/comments/commentRss/61073.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/border/services/trackbacks/61073.html</trackback:ping><description><![CDATA[
		<table class="fixedTable blogpost" border="0" cellspacing="0" width="100%">
				<tbody>
						<tr>
								<td class="bvh8">
								</td>
						</tr>
						<tr>
								<td id="msgcns!2C1CE5739F8D5F4A!117">
										<div>HttpRequest对象有两种形式的getSession方法调用：<br />一个是getSession()，<br />另一个是getSession(boolean isNew)<br /><br />这样的<font style="background-color: rgb(153, 204, 0);">，前者会检测当前时候有session存在，</font><font style="background-color: rgb(204, 255, 204);">如果不存在则创建一个，如果存在就返回当前的。</font><br /><font color="#ff0000">getSession()相当于getSession(true)，</font><br /><br /><a name="Reply_26145018">参数为true时，若存在会话则返回该会话，否则新建一个会话。</a><br /><a name="Reply_26145018">参数为false时，若存在会话则返回该会话，否则应该返回一个NULL
</a><br /><br />这是文档：<br /><br /><a name="Reply_26153747"> getSession   <br />   public   HttpSession  
getSession(boolean   create)Returns   the   current   HttpSession  
associated   with   this   request   or,   if   if   there   is   no  
current   session   and   create   is   true,   returns   a   new  
session.     <br />   If   create   is   false   and   the   request   has   no   valid   HttpSession,   this   method   returns   null.      <br />      <br />
  To   make   sure   the   session   is   properly   maintained,   you
  must   call   this   method   before   the   response   is  
committed.   If   the   container   is   using   cookies   to  
maintain   session   integrity   and   is   asked   to   create   a  
new   session   when   the   response   is   committed,   an  
IllegalStateException   is   thrown.   <br />      <br />   Parameters:   <br />
  true   -   to   create   a   new   session   for   this   request  
if   necessary;   false   to   return   null   if   there's   no  
current   session   <br />   Returns:   <br />   the   HttpSession  
associated   with   this   request   or   null   if   create   is  
false   and   the   request   has   no   valid   session   <br /><br /><br />感谢</a><a id="Comments1_CommentList_ctl00_NameLink" target="_blank">zhouhu的提醒，现在已经修正。<br />Edit By: BorderJ    2006.8.18<br /><br /></a><a name="Reply_26153747"><br /></a></div>
								</td>
						</tr>
				</tbody>
		</table>
<img src ="http://www.blogjava.net/border/aggbug/61073.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/border/" target="_blank">BorderJ</a> 2006-07-31 19:46 <a href="http://www.blogjava.net/border/archive/2006/07/31/61073.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>php-5.1.4 和apache_2.2.2的安装过程。</title><link>http://www.blogjava.net/border/archive/2006/07/20/59277.html</link><dc:creator>BorderJ</dc:creator><author>BorderJ</author><pubDate>Thu, 20 Jul 2006 10:22:00 GMT</pubDate><guid>http://www.blogjava.net/border/archive/2006/07/20/59277.html</guid><wfw:comment>http://www.blogjava.net/border/comments/59277.html</wfw:comment><comments>http://www.blogjava.net/border/archive/2006/07/20/59277.html#Feedback</comments><slash:comments>6</slash:comments><wfw:commentRss>http://www.blogjava.net/border/comments/commentRss/59277.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/border/services/trackbacks/59277.html</trackback:ping><description><![CDATA[
		<font size="2">          从各官方网站下了 php-5.1.4-Win32.zip ，apache_2.2.2-win32-x86-no_ssl.msi ，<br /><br />下载地址： <br />php-5.1.4-Win32.zip ： </font>
		<a href="http://cn.php.net/distributions/php-5.1.4-Win32.zip">
				<font size="2">http://cn.php.net/distributions/php-5.1.4-Win32.zip</font>
		</a>
		<br />
		<font size="2">apache_2.2.2-win32-x86-no_ssl.msi ： </font>
		<a href="http://mirror.vmmatrix.net/apache/httpd/binaries/win32/apache_2.2.2-win32-x86-no_ssl.msi">
				<font size="2">http://mirror.vmmatrix.net/apache/httpd/binaries/win32/apache_2.2.2-win32-x86-no_ssl.msi</font>
		</a>
		<br />
		<br />
		<font size="2">我的安装路径：<br /></font>php :       D:\border\php<br />apache:    D:\border\Apache2.2<br /><br /><strong>安装apache 并配置支持PHP：<br /><br />1. </strong><font size="2">apache 安装比较简单，一路next就可以安装完成。在你的ie中输入 <a href="http://127.0.0.1/">http://127.0.0.1/</a> ，看到结果是 
<h1> It works!</h1><p>说明apache安装成功！<br /><br />2.配置apache并支持php：<br />         把php解压到D:\border\php，<br />找到 php目录里的 php.ini-dist重命名为 php.ini <br />把php目录加大你的path中。<br />配置apache里的httpd.conf<br /><br />打开 D:\border\Apache2.2\conf\httpd.conf 这个文件<br /><br />找到 DocumentRoot "D:/php/Apache2/htdocs" 将其改为你的WEB目录,如我的为<br /><br /><font color="red">DocumentRoot "D:/border/php/www"</font><br /><br />找到 DirectoryIndex index.html index.html.var 在后面加入 <font color="red">index.htm index.php</font> (默认index.php为首页文件)<br /><br />--------------模块化安装PHP----------------------------------------<br />找到 #LoadModule ssl_module modules/mod_ssl.so 这行，在此行后加入一行<br /><br /><font color="#ff0000">LoadModule php5_module "D:/border/php5apache2.dll"</font><br /><br />其中<font color="#000000">D:/border/php/php5apache2.dll</font>为你php目录中php5apache2.dll所在的位置<br /><br />再找到 AddType application/x-gzip .gz .tgz 这行，在此行后加入一行<br /><br /><font color="red">AddType application/x-httpd-php .php<br /></font><br />在后面加上：<br /><font color="#ff0000">ScriptAlias /php/ "D:/border/php/"<br />AddType application/x-httpd-php .php</font><br /><font color="red"><br /><font color="black">(其实:上面两行红色的,你可以直接加在httpd.conf文件的最后面也可以的)</font><br /></font>--------------------------------------------------------------------<br /><br />此时PHP环境基本已经配置成功 <br />在WEB根目录（如我的D:\border\php\www）里建一个名为test.php (提示:用记事本的朋友,请避免文件为test.php.txt) ,的文件内容如下 <br /></p><div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"><img src="http://www.blogjava.net/images/OutliningIndicators/None.gif" align="top" /><span style="COLOR: #000000">&lt;?</span><span style="COLOR: #000000"> </span><span style="COLOR: #0000ff">echo</span><span style="COLOR: #000000"> </span><span style="COLOR: #008080">phpinfo</span><span style="COLOR: #000000">(); </span><span style="COLOR: #000000">?&gt;</span><span style="COLOR: #000000"> </span></div><p>重新启动apache服务<br />用浏览器打开 <a href="http://localhost/test.php" target="_blank"><u><font color="#22229c">http://localhost/test.php</font></u></a><br />如果可以看到php配置输出信息就OK了 .<br /><br />详细的说明可以看<a href="http://www.php.net/manual/zh/install.windows.apache2.php" target="_blank">说明文档</a>：<br /><br /><font color="#009900">注：<br />不过在我安装的过程中还是遇到了些问题：</font></p><p>提示: <br /><font face="新宋体">"Cannot load C:/border/php/php5apache2.dll into server: The specified module could not be found."</font><br /></p><p><font color="#ff0000">原因:</font></p><p><font color="#ff0000"> PHP压缩包里的<font face="新宋体">php5apache2.dll只适用于apache2.0.*</font></font></p><p>解决方法:</p><p>下载 <a href="http://borderj.googlepages.com/php5apache2.dll-php5.1.x.rar" target="_blank">这个文件</a> 并解压.共有三个文件.<br /><br /><a href="/Files/border/php5apache2.dll-php5.1.x.rar" target="_blank">vcredist_x86.exe<br />php5apache2.dll</a><br />httpd.exe.manifest<br /></p><p>好,开始</p><p>1.将 php5apache2.dll 覆盖掉你原来PHP目录下的 <font face="新宋体">php5apache2.dll 文件.</font></p><p><font face="新宋体">2.将 </font><font face="Verdana">httpd.exe.manifest 文件复制到你的apache安装目录下的bin文件夹下.</font></p><p>3.双击运行vcredist_x86.exe安装.(如果您的系统里已安装了 .NET framework 2.就可以省掉这一步)</p><p>完成!去重启你的apache2.2试试吧.<br /></p><p>参考：<br /> esayr  ：<strong><a href="http://www.phpv.net/article.php/1511" target="_blank">apache 2.2.2 + PHP5.1.4 不能运行的解决办法</a>. </strong> <br /><br /><font size="2">          从各官方网站下了 php-5.1.4-Win32.zip ，apache_2.2.2-win32-x86-no_ssl.msi ，<br /><br />下载地址： <br />php-5.1.4-Win32.zip ： </font><a href="http://cn.php.net/distributions/php-5.1.4-Win32.zip"><font size="2">http://cn.php.net/distributions/php-5.1.4-Win32.zip</font></a><br /><font size="2">apache_2.2.2-win32-x86-no_ssl.msi ： </font><a href="http://mirror.vmmatrix.net/apache/httpd/binaries/win32/apache_2.2.2-win32-x86-no_ssl.msi"><font size="2">http://mirror.vmmatrix.net/apache/httpd/binaries/win32/apache_2.2.2-win32-x86-no_ssl.msi</font></a><br /><br /><font size="2">我的安装路径：<br /></font>php :       D:\border\php<br />apache:    D:\border\Apache2.2<br /><br /><strong>安装apache 并配置支持PHP：<br /><br />1. </strong><font size="2">apache 安装比较简单，一路next就可以安装完成。在你的ie中输入 <a href="http://127.0.0.1/">http://127.0.0.1/</a> ，看到结果是 </font></p><h1> It works!</h1><p>说明apache安装成功！<br /><br />2.配置apache并支持php：<br />         把php解压到D:\border\php，<br />找到 php目录里的 php.ini-dist重命名为 php.ini <br />把php目录加大你的path中。<br />配置apache里的httpd.conf<br /><br />打开 D:\border\Apache2.2\conf\httpd.conf 这个文件<br /><br />找到 DocumentRoot "D:/php/Apache2/htdocs" 将其改为你的WEB目录,如我的为<br /><br /><font color="red">DocumentRoot "D:/border/php/www"</font><br /><br />找到 DirectoryIndex index.html index.html.var 在后面加入 <font color="red">index.htm index.php</font> (默认index.php为首页文件)<br /><br />--------------模块化安装PHP----------------------------------------<br />找到 #LoadModule ssl_module modules/mod_ssl.so 这行，在此行后加入一行<br /><br /><font color="#ff0000">LoadModule php5_module "D:/border/php/php5apache2.dll"</font><br /><br />其中<font color="#000000">D:/border/php/php5apache2.dll</font>为你php目录中php5apache2.dll所在的位置<br /><br />再找到 AddType application/x-gzip .gz .tgz 这行，在此行后加入一行<br /><br /><font color="red">AddType application/x-httpd-php .php<br /></font><br />在后面加上：<br /><font color="#ff0000">ScriptAlias /php/ "D:/border/php/php/"<br />AddType application/x-httpd-php .php</font><br /><font color="red"><br /><font color="black">(其实:上面两行红色的,你可以直接加在httpd.conf文件的最后面也可以的)</font><br /></font>--------------------------------------------------------------------<br /><br />此时PHP环境基本已经配置成功 <br />在WEB根目录（如我的D:\border\php\www）里建一个名为test.php (提示:用记事本的朋友,请避免文件为test.php.txt) ,的文件内容如下 <br /></p><p> </p><div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"><img src="http://www.blogjava.net/images/OutliningIndicators/None.gif" align="top" /><span style="COLOR: #000000">&lt;?</span><span style="COLOR: #000000"> </span><span style="COLOR: #0000ff">echo</span><span style="COLOR: #000000"> </span><span style="COLOR: #008080">phpinfo</span><span style="COLOR: #000000">(); </span><span style="COLOR: #000000">?&gt;</span><span style="COLOR: #000000"> </span></div><p> </p><p>重新启动apache服务<br />用浏览器打开 <a href="http://localhost/test.php" target="_blank"><u><font color="#22229c">http://localhost/test.php</font></u></a><br />如果可以看到php配置输出信息就OK了 .<br /><br />详细的说明可以看<a href="http://www.php.net/manual/zh/install.windows.apache2.php" target="_blank">说明文档</a>：<br /><br /><font color="#009900">注：<br />不过在我安装的过程中还是遇到了些问题：</font></p><p>提示: <br /><font face="新宋体">"Cannot load C:/php/php5apache2.dll into server: The specified module could not be found."</font><br /></p><p><font color="#ff0000">原因:</font></p><p><font color="#ff0000"> PHP压缩包里的<font face="新宋体">php5apache2.dll只适用于apache2.0.*</font></font></p><p>解决方法:</p><p>下载 <a href="/Files/border/php5apache2.dll-php5.1.x.rar" target="_blank">这个文件</a> 并解压.共有三个文件.<br /><br /> <a href="/Files/border/php5apache2.dll-php5.1.x.rar" target="_blank">vcredist_x86.exe<br /> php5apache2.dll</a><br /> <a href="http://download.microsoft.com/download/5/6/7/567758a3-759e-473e-bf8f-52154438565a/dotnetfx.exe">httpd.exe.manifest</a><br /></p><p>好,开始</p><p>1.将 php5apache2.dll 覆盖掉你原来PHP目录下的 <font face="新宋体">php5apache2.dll 文件.</font></p><p><font face="新宋体">2.将 </font><font face="Verdana">httpd.exe.manifest 文件复制到你的apache安装目录下的bin文件夹下.</font></p><p>3.双击运行vcredist_x86.exe安装.(如果您的系统里已安装了 <a href="http://download.microsoft.com/download/5/6/7/567758a3-759e-473e-bf8f-52154438565a/dotnetfx.exe" target="_blank">.NET framework 2.</a>就可以省掉这一步)</p><p>完成!去重启你的apache2.2试试吧.<br /></p><p>参考：<br /> esayr  ：<strong><a href="/border/admin/apache%202.2.2%20+%20PHP5.1.4%20不能运行的解决办法." target="_blank">apache 2.2.2 + PHP5.1.4 不能运行的解决办法</a>. </strong> <br /> <a href="http://www.php.net/manual/zh/install.windows.apache2.php" target="_blank">php手册</a><br /> <a href="http://www.phpv.net/article.php/320" target="_blank">windows 2000/XP/2003下安裝APACHE2.0.53、PHP5.0.3、MYSQL4.1.10a、PHPMYADMIN2..6.1</a></p><p><br /> </p></font><p><br /> </p><img src ="http://www.blogjava.net/border/aggbug/59277.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/border/" target="_blank">BorderJ</a> 2006-07-20 18:22 <a href="http://www.blogjava.net/border/archive/2006/07/20/59277.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>在Eclipse3.2中安装XDoclet.</title><link>http://www.blogjava.net/border/archive/2006/07/18/58824.html</link><dc:creator>BorderJ</dc:creator><author>BorderJ</author><pubDate>Tue, 18 Jul 2006 09:52:00 GMT</pubDate><guid>http://www.blogjava.net/border/archive/2006/07/18/58824.html</guid><wfw:comment>http://www.blogjava.net/border/comments/58824.html</wfw:comment><comments>http://www.blogjava.net/border/archive/2006/07/18/58824.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/border/comments/commentRss/58824.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/border/services/trackbacks/58824.html</trackback:ping><description><![CDATA[
		<p>       在Eclipse的web开发平台(WTP)包括了大部分web开发工具,如: <font color="#ff0000">source editors for HTML, Javascript, CSS, JSP, SQL, XML, DTD, XSD, and WSDL; graphical editors for XSD and WSDL; J2EE project natures, builders, and models and a J2EE navigator; a Web service wizard and explorer, and WS-I Test Tools; and database access and query tools and models.</font>   也支持XDoclet, 不过自己要先下载 <a href="http://xdoclet.sourceforge.net/xdoclet/index.html">XDoclet</a> . 然后在Window &gt; Preferences &gt; XDoclet  进行配置.</p>
		<p>     WTP : <a href="http://www.eclipse.org/webtools/">http://www.eclipse.org/webtools/</a><br />     XDoclet . <a href="http://xdoclet.sourceforge.net/xdoclet/index.html">http://xdoclet.sourceforge.net/xdoclet/index.html</a></p>
		<p>
				<br />To use XDoclet annotation support, or to create enterprise beans, XDoclet must be installed on your system and configured to work with the workbench.</p>
		<p>Download and install XDoclet from <a href="http://xdoclet.sourceforge.net/xdoclet/index.html">http://xdoclet.sourceforge.net/xdoclet/index.html</a><br />To configure XDoclet to work with the workbench:</p>
		<p>1.Click <font color="#ff0000">Window</font> &gt; <font color="#ff0000">Preferences</font> &gt; <font color="#ff0000">XDoclet</font> to open the XDoclet Runtime Preferences page. <br />2.Check the <font color="#ff0000">Enable XDoclet Builder</font> check box to turn on annotation-based artifact creation.<br />3.Use the <font color="#ff0000">Browse button</font> to locate the installation directory for XDoclet (<font color="#ff0000">XDoclet Home</font>). <br />4.Select the <font color="#ff0000">Version</font> of XDoclet that you have installed. Supported versions include 1.2.1, 1.2.2, 1.2.3. <br />5.Click <font color="#ff0000">OK</font> to save the preferences.<br /></p>
<img src ="http://www.blogjava.net/border/aggbug/58824.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/border/" target="_blank">BorderJ</a> 2006-07-18 17:52 <a href="http://www.blogjava.net/border/archive/2006/07/18/58824.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Struts 秘籍（CookBook） (转)</title><link>http://www.blogjava.net/border/articles/58723.html</link><dc:creator>BorderJ</dc:creator><author>BorderJ</author><pubDate>Tue, 18 Jul 2006 04:26:00 GMT</pubDate><guid>http://www.blogjava.net/border/articles/58723.html</guid><wfw:comment>http://www.blogjava.net/border/comments/58723.html</wfw:comment><comments>http://www.blogjava.net/border/articles/58723.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/border/comments/commentRss/58723.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/border/services/trackbacks/58723.html</trackback:ping><description><![CDATA[
		<div class="postTitle">自: <a href="/SteelHand/">铁手剑谱</a><br /><br />本系列源改编自O'Reily的Strus Cookbook，后因时间关系没再进行。如果以后有时间还需继续，可能会更简化一些 。</div>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/10/4132.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>1<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：配置</span></span>Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">应用</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/04/26/3825.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之起式：第</span></span>1.2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：部署</span></span>Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">示例应用</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/04/27/3835.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之起式：第</span></span>1.3<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：迁移至</span></span>Struts 1.1</a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/04/28/3876.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之起式：第</span></span>1.4<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：升级至</span></span>Struts 1.2</a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/04/29/3930.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之起式：第</span></span>1.5<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式</span></span>:<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">将</span></span>JSP <span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">应用转到</span></span>Struts</a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/04/30/3960.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之起式：第</span></span>1.6<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：管理</span></span>Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">配置文件</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/08/4077.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之起式：第</span></span>1.7<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：使用</span></span>Ant<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">进行构建和部署</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/09/4110.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之起式：第</span></span>1.8<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：用</span></span>XDoclet <span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">产生</span></span>Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">配置文件</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/25/5148.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：</span></span>UI</a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/10/4136.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>1<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>2.1<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：用插件来进行应用初始化</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/11/4159.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>1<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>2.1<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：关于标签库声明</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/12/4211.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>1<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>2.3<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：在</span></span>JSP<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">中使用常数</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/13/4247.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>1<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>2.4<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：多配置文件</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/17/4423.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>1<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>2.5<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式</span></span>. <span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">将应用重构为模块</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/17/4426.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>1<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>2.6<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式</span></span>. <span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">使用多个资源束</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/18/4474.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>1<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>2.7<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式</span></span>. <span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">访问来自于数据库中的消息资源</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/19/4867.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>1<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>2.8<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式</span></span>. <span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">有选择地禁止</span></span>Action</a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/27/5265.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>3.1<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：</span></span><span lang="EN-US"><span lang="EN-US"></span></span><span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">使用</span></span>JSTL</a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/27/5266.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>3.2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：使用</span></span>Struts-EL <span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">标签</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/30/5324.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>3.3<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：显示索引属性</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/05/31/5368.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>3.4<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：在表单中使用索引属性</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/06/01/5413.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>3.5<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：</span></span><span lang="EN-US"><span lang="EN-US"></span></span><span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">在</span></span>JSTL<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">循环中使用索引属性</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/06/03/5506.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>3.6<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：</span></span><span lang="EN-US"><span lang="EN-US"></span></span><span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">从图像提交表单</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/06/07/5654.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>3.7<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：</span></span><span lang="EN-US"><span lang="EN-US"></span></span><span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">动态产生</span></span>JavaScript</a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/06/08/5723.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>3.8<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式：使用</span></span>JavaScript<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">动态改变选择项</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/06/29/6861.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段，第</span></span> 3.9<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式，产生动态选择列表项目</span></span></a>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt" align="left">
				<span lang="EN-US">
						<a href="/SteelHand/archive/2005/07/01/6974.html">Struts<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">秘籍之第</span></span>2<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">段：第</span></span>3.10<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">式</span></span>:<span lang="EN-US" style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><span lang="EN-US">过滤文本输入</span></span></a> <br /><br /><br />                                                       本系列文章来自:<a href="/SteelHand/category/1170.html?Show=All" target="_blank">http://www.blogjava.net/SteelHand/category/1170.html?Show=All</a></span>
		</p>
<img src ="http://www.blogjava.net/border/aggbug/58723.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/border/" target="_blank">BorderJ</a> 2006-07-18 12:26 <a href="http://www.blogjava.net/border/articles/58723.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>通过rome读取feed，发现中文出现部分乱码。。</title><link>http://www.blogjava.net/border/archive/2006/07/12/57848.html</link><dc:creator>BorderJ</dc:creator><author>BorderJ</author><pubDate>Wed, 12 Jul 2006 10:37:00 GMT</pubDate><guid>http://www.blogjava.net/border/archive/2006/07/12/57848.html</guid><wfw:comment>http://www.blogjava.net/border/comments/57848.html</wfw:comment><comments>http://www.blogjava.net/border/archive/2006/07/12/57848.html#Feedback</comments><slash:comments>7</slash:comments><wfw:commentRss>http://www.blogjava.net/border/comments/commentRss/57848.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/border/services/trackbacks/57848.html</trackback:ping><description><![CDATA[
		<p>    用了rome 0,8的jar包，代码大部分来自于rome-samples-0.7 。<br />对了，放个rome的链接<a href="https://rome.dev.java.net/"><font color="#003366">Rome's Home</font></a>,可以直接去下载。还有就是在用rome的时候，把信息输出到xml文件里</p>
		<div>
				<wbr>，部分出现乱码不知道是怎么回事<wbr>，我读的feed文件是utf-8的，我也是通过utf8读的<wbr>，但是还是有一部分乱码。今天找了一天也没有解决。。。<br /><br /><div style="border: 1px solid rgb(204, 204, 204); padding: 4px 5px 4px 4px; background-color: rgb(238, 238, 238); font-size: 13px; width: 98%;"><!--<br><br>Code highlighting produced by Actipro CodeHighlighter (freeware)<br>http://www.CodeHighlighter.com/<br><br>--><span style="color: rgb(0, 128, 128);"> 1</span> <span style="color: rgb(0, 128, 0);">/*</span><span style="color: rgb(0, 128, 0);"><br /></span><span style="color: rgb(0, 128, 128);"> 2</span> <span style="color: rgb(0, 128, 0);"> * Created on 2006-7-11<br /></span><span style="color: rgb(0, 128, 128);"> 3</span> <span style="color: rgb(0, 128, 0);"> *<br /></span><span style="color: rgb(0, 128, 128);"> 4</span> <span style="color: rgb(0, 128, 0);"> * TODO To change the template for this generated file go to<br /></span><span style="color: rgb(0, 128, 128);"> 5</span> <span style="color: rgb(0, 128, 0);"> * Window - Preferences - Java - Code Style - Code Templates<br /></span><span style="color: rgb(0, 128, 128);"> 6</span> <span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 0);">*/</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);"> 7</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">package</span><span style="color: rgb(0, 0, 0);"> border;<br /></span><span style="color: rgb(0, 128, 128);"> 8</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);"> 9</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">import</span><span style="color: rgb(0, 0, 0);"> java.io.FileWriter;<br /></span><span style="color: rgb(0, 128, 128);">10</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">import</span><span style="color: rgb(0, 0, 0);"> java.io.Writer;<br /></span><span style="color: rgb(0, 128, 128);">11</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">import</span><span style="color: rgb(0, 0, 0);"> java.net.URL;<br /></span><span style="color: rgb(0, 128, 128);">12</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">import</span><span style="color: rgb(0, 0, 0);"> java.util.List;<br /></span><span style="color: rgb(0, 128, 128);">13</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">14</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">import</span><span style="color: rgb(0, 0, 0);"> com.sun.syndication.feed.synd.SyndContent;<br /></span><span style="color: rgb(0, 128, 128);">15</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">import</span><span style="color: rgb(0, 0, 0);"> com.sun.syndication.feed.synd.SyndEntry;<br /></span><span style="color: rgb(0, 128, 128);">16</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">import</span><span style="color: rgb(0, 0, 0);"> com.sun.syndication.feed.synd.SyndFeed;<br /></span><span style="color: rgb(0, 128, 128);">17</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">import</span><span style="color: rgb(0, 0, 0);"> com.sun.syndication.fetcher.FeedFetcher;<br /></span><span style="color: rgb(0, 128, 128);">18</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">import</span><span style="color: rgb(0, 0, 0);"> com.sun.syndication.fetcher.impl.FeedFetcherCache;<br /></span><span style="color: rgb(0, 128, 128);">19</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">import</span><span style="color: rgb(0, 0, 0);"> com.sun.syndication.fetcher.impl.HashMapFeedInfoCache;<br /></span><span style="color: rgb(0, 128, 128);">20</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">import</span><span style="color: rgb(0, 0, 0);"> com.sun.syndication.fetcher.impl.HttpURLFeedFetcher;<br /></span><span style="color: rgb(0, 128, 128);">21</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">import</span><span style="color: rgb(0, 0, 0);"> com.sun.syndication.io.SyndFeedOutput;<br /></span><span style="color: rgb(0, 128, 128);">22</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">23</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 128, 0);">/**</span><span style="color: rgb(0, 128, 0);"><br /></span><span style="color: rgb(0, 128, 128);">24</span> <span style="color: rgb(0, 128, 0);"> * </span><span style="color: rgb(128, 128, 128);">@author</span><span style="color: rgb(0, 128, 0);"> Border<br /></span><span style="color: rgb(0, 128, 128);">25</span> <span style="color: rgb(0, 128, 0);"> * <br /></span><span style="color: rgb(0, 128, 128);">26</span> <span style="color: rgb(0, 128, 0);"> * TODO To change the template for this generated type comment go to Window -<br /></span><span style="color: rgb(0, 128, 128);">27</span> <span style="color: rgb(0, 128, 0);"> * Preferences - Java - Code Style - Code Templates<br /></span><span style="color: rgb(0, 128, 128);">28</span> <span style="color: rgb(0, 128, 0);"> </span><span style="color: rgb(0, 128, 0);">*/</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">29</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">public</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">class</span><span style="color: rgb(0, 0, 0);"> RSSReader {<br /></span><span style="color: rgb(0, 128, 128);">30</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">private</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">static</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">final</span><span style="color: rgb(0, 0, 0);"> String feedType </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">rss_2.0</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">;<br /></span><span style="color: rgb(0, 128, 128);">31</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">32</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">public</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">static</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">void</span><span style="color: rgb(0, 0, 0);"> main(String[] args) </span><span style="color: rgb(0, 0, 255);">throws</span><span style="color: rgb(0, 0, 0);"> Exception {<br /></span><span style="color: rgb(0, 128, 128);">33</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">34</span> <span style="color: rgb(0, 0, 0);">        String filename </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">E:\\ROME\\feed_fetcher2.xml</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">;<br /></span><span style="color: rgb(0, 128, 128);">35</span> <span style="color: rgb(0, 0, 0);">        </span><span style="color: rgb(0, 0, 255);">try</span><span style="color: rgb(0, 0, 0);"> {<br /></span><span style="color: rgb(0, 128, 128);">36</span> <span style="color: rgb(0, 0, 0);">            FeedFetcherCache feedInfoCache </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> HashMapFeedInfoCache.getInstance();<br /></span><span style="color: rgb(0, 128, 128);">37</span> <span style="color: rgb(0, 0, 0);">            FeedFetcher feedFetcher </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">new</span><span style="color: rgb(0, 0, 0);"> HttpURLFeedFetcher();<br /></span><span style="color: rgb(0, 128, 128);">38</span> <span style="color: rgb(0, 0, 0);">            SyndFeed feed </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> feedFetcher.retrieveFeed(</span><span style="color: rgb(0, 0, 255);">new</span><span style="color: rgb(0, 0, 0);"> URL(<br /></span><span style="color: rgb(0, 128, 128);">39</span> <span style="color: rgb(0, 0, 0);">                    </span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">http://www.blogjava.net/border/Rss.aspx</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">));<br /></span><span style="color: rgb(0, 128, 128);">40</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">41</span> <span style="color: rgb(0, 0, 0);">            feed.setFeedType(feedType);<br /></span><span style="color: rgb(0, 128, 128);">42</span> <span style="color: rgb(0, 0, 0);">            feed.setTitle(</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">Border's Blog</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">);<br /></span><span style="color: rgb(0, 128, 128);">43</span> <span style="color: rgb(0, 0, 0);">            feed.setDescription(</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);"> java Web3D FreeBsd </span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">);<br /></span><span style="color: rgb(0, 128, 128);">44</span> <span style="color: rgb(0, 0, 0);">            feed.setAuthor(</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);"> By:border </span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">);<br /></span><span style="color: rgb(0, 128, 128);">45</span> <span style="color: rgb(0, 0, 0);">            feed.setLink(</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);"> http://www.blogjava.net/border </span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">);<br /></span><span style="color: rgb(0, 128, 128);">46</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">47</span> <span style="color: rgb(0, 0, 0);">            List entryList </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> feed.getEntries();<br /></span><span style="color: rgb(0, 128, 128);">48</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">49</span> <span style="color: rgb(0, 0, 0);">            </span><span style="color: rgb(0, 0, 255);">for</span><span style="color: rgb(0, 0, 0);"> (</span><span style="color: rgb(0, 0, 255);">int</span><span style="color: rgb(0, 0, 0);"> i </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 0);">0</span><span style="color: rgb(0, 0, 0);">; i </span><span style="color: rgb(0, 0, 0);">&lt;</span><span style="color: rgb(0, 0, 0);"> entryList.size(); i</span><span style="color: rgb(0, 0, 0);">++</span><span style="color: rgb(0, 0, 0);">) {<br /></span><span style="color: rgb(0, 128, 128);">50</span> <span style="color: rgb(0, 0, 0);">                SyndEntry entry </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> (SyndEntry) entryList.get(i);<br /></span><span style="color: rgb(0, 128, 128);">51</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">52</span> <span style="color: rgb(0, 0, 0);">                entry.setPublishedDate(entry.getPublishedDate());<br /></span><span style="color: rgb(0, 128, 128);">53</span> <span style="color: rgb(0, 0, 0);">                entry.setTitle(</span><span style="color: rgb(0, 0, 255);">new</span><span style="color: rgb(0, 0, 0);"> String(entry.getTitle().getBytes(</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">utf-8</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">)));<br /></span><span style="color: rgb(0, 128, 128);">54</span> <span style="color: rgb(0, 0, 0);">                entry.setLink(entry.getLink());<br /></span><span style="color: rgb(0, 128, 128);">55</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">56</span> <span style="color: rgb(0, 0, 0);">                SyndContent content </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> entry.getDescription();<br /></span><span style="color: rgb(0, 128, 128);">57</span> <span style="color: rgb(0, 0, 0);">                content.setValue(</span><span style="color: rgb(0, 0, 255);">new</span><span style="color: rgb(0, 0, 0);"> String(content.getValue()<br /></span><span style="color: rgb(0, 128, 128);">58</span> <span style="color: rgb(0, 0, 0);">                        .getBytes(</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">utf-8</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">)));<br /></span><span style="color: rgb(0, 128, 128);">59</span> <span style="color: rgb(0, 0, 0);">            }<br /></span><span style="color: rgb(0, 128, 128);">60</span> <span style="color: rgb(0, 0, 0);">            SyndFeedOutput output </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">new</span><span style="color: rgb(0, 0, 0);"> SyndFeedOutput();<br /></span><span style="color: rgb(0, 128, 128);">61</span> <span style="color: rgb(0, 0, 0);">            Writer writer </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">new</span><span style="color: rgb(0, 0, 0);"> FileWriter(filename);<br /></span><span style="color: rgb(0, 128, 128);">62</span> <span style="color: rgb(0, 0, 0);">            output.output(feed, writer);<br /></span><span style="color: rgb(0, 128, 128);">63</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">64</span> <span style="color: rgb(0, 0, 0);">            System.out.println(</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">The feed has been written to the file [</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">65</span> <span style="color: rgb(0, 0, 0);">                    </span><span style="color: rgb(0, 0, 0);">+</span><span style="color: rgb(0, 0, 0);"> filename </span><span style="color: rgb(0, 0, 0);">+</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">]</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">);<br /></span><span style="color: rgb(0, 128, 128);">66</span> <span style="color: rgb(0, 0, 0);">            System.out.println(</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);"> ok !</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">);<br /></span><span style="color: rgb(0, 128, 128);">67</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">68</span> <span style="color: rgb(0, 0, 0);">        } </span><span style="color: rgb(0, 0, 255);">catch</span><span style="color: rgb(0, 0, 0);"> (Exception e) {<br /></span><span style="color: rgb(0, 128, 128);">69</span> <span style="color: rgb(0, 0, 0);">            System.out.println(</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">ERROR: </span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 0);">+</span><span style="color: rgb(0, 0, 0);"> e.getMessage());<br /></span><span style="color: rgb(0, 128, 128);">70</span> <span style="color: rgb(0, 0, 0);">        }<br /></span><span style="color: rgb(0, 128, 128);">71</span> <span style="color: rgb(0, 0, 0);">    }<br /></span><span style="color: rgb(0, 128, 128);">72</span> <span style="color: rgb(0, 0, 0);">}</span></div><br /><br />下面是生成的xml文件：<br /><br /><div style="border: 1px solid rgb(204, 204, 204); padding: 4px 5px 4px 4px; background-color: rgb(238, 238, 238); font-size: 13px; width: 98%;"><!--<br><br>Code highlighting produced by Actipro CodeHighlighter (freeware)<br>http://www.CodeHighlighter.com/<br><br>--><span style="color: rgb(0, 128, 128);"> 1</span> <span style="color: rgb(0, 0, 255);">&lt;?</span><span style="color: rgb(255, 0, 255);">xml version="1.0" encoding="UTF-8"</span><span style="color: rgb(0, 0, 255);">?&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);"> 2</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">rss </span><span style="color: rgb(255, 0, 0);">xmlns:taxo</span><span style="color: rgb(0, 0, 255);">="http://purl.org/rss/1.0/modules/taxonomy/"</span><span style="color: rgb(255, 0, 0);"> xmlns:rdf</span><span style="color: rgb(0, 0, 255);">="http://www.w3.org/1999/02/22-rdf-syntax-ns#"</span><span style="color: rgb(255, 0, 0);"> xmlns:dc</span><span style="color: rgb(0, 0, 255);">="http://purl.org/dc/elements/1.1/"</span><span style="color: rgb(255, 0, 0);"> version</span><span style="color: rgb(0, 0, 255);">="2.0"</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);"> 3</span> <span style="color: rgb(0, 0, 0);">  </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">channel</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);"> 4</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">title</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">Border's Blog</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">title</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);"> 5</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">link</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">http://www.blogjava.net/border</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">link</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);"> 6</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">description</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">java Web3D FreeBsd</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">description</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);"> 7</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">language</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">zh-cn</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">language</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);"> 8</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">pubDate</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">Thu, 06 Jul 2006 11:05:25 GMT</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">pubDate</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);"> 9</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">dc:creator</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">By:border</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">dc:creator</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">10</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">dc:date</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">2006-07-06T11:05:25Z</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">dc:date</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">11</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">dc:language</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">zh-cn</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">dc:language</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">12</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">item</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">13</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">title</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">免费MySQL数据库申譿</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">title</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">14</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">link</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">http://www.blogjava.net/border/archive/2006/07/06/57015.html</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">link</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">15</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">description</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">a href="http://www.db4free.net/"</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">img alt="" src="http://www.kuangfeng.cn/blog/wp-content/uploads/2006/03/db4free.jpg" align="left" border="0" /</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">/a</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">br /</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">br /</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">br /</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">br /</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">a href="http://www.db4free.net/"</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);">Db4free</span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">/a</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);">：专业提供免费数据库服务，支持 MySQL 5.0ﺿ5.1，支持使用Phpmyadmin进行管理，以后还将扩展支持PostgreSQL, Firebird 等数据库.</span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">img src ="http://www.blogjava.net/border/aggbug/57015.html" width = "1" height = "1" /</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">br</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">br</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">div align=right</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">a style="text-decoration:none;" href="/border/" target="_blank"</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);">Border</span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">/a</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);"> 2006-07-06 19:05 </span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">a href="/border/archive/2006/07/06/57015.html#Feedback" target="_blank" style="text-decoration:none;"</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);">发表评论</span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">/a</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">/div</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">description</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">16</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">pubDate</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">Thu, 06 Jul 2006 11:05:00 GMT</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">pubDate</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">17</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">guid </span><span style="color: rgb(255, 0, 0);">isPermaLink</span><span style="color: rgb(0, 0, 255);">="false"</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">http://www.blogjava.net/border/archive/2006/07/06/57015.html</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">guid</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">18</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">dc:creator</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">Border</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">dc:creator</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">19</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">dc:date</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">2006-07-06T11:05:00Z</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">dc:date</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">20</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">item</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">21</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">item</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">22</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">title</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">刚刚大厦晃的利害，是不是有些地震叿 --  北京</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">title</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">23</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">link</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">http://www.blogjava.net/border/archive/2006/07/04/56502.html</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">link</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">24</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">description</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">      刚刚大厦晃的利害，是不是有些地震叿 ，在17层感觉比较厉害，不知道在北京的其他同志有没有注意到὿</span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">img src ="http://www.blogjava.net/border/aggbug/56502.html" width = "1" height = "1" /</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">br</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">br</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">div align=right</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">a style="text-decoration:none;" href="/border/" target="_blank"</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);">Border</span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">/a</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);"> 2006-07-04 12:20 </span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">a href="/border/archive/2006/07/04/56502.html#Feedback" target="_blank" style="text-decoration:none;"</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);">发表评论</span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">/a</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">/div</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">description</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">25</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">pubDate</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">Tue, 04 Jul 2006 04:20:00 GMT</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">pubDate</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">26</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">guid </span><span style="color: rgb(255, 0, 0);">isPermaLink</span><span style="color: rgb(0, 0, 255);">="false"</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">http://www.blogjava.net/border/archive/2006/07/04/56502.html</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">guid</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">27</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">dc:creator</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">Border</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">dc:creator</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">28</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">dc:date</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">2006-07-04T04:20:00Z</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">dc:date</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">29</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">item</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">30</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">item</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">31</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">title</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">通过js等比扩大图片的比伿</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">title</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">32</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">link</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">http://www.blogjava.net/border/archive/2006/07/03/56279.html</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">link</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">33</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">description</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">摘要:    在做web庿发的时㿙，显示图片是经常用到ῂ在默认的情况下图片是扩充，但是有的时㿙显示效果会不如人意。有时容器的大小是固定的，我们要把图片等比扩大὿</span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">a href='http://www.blogjava.net/border/archive/2006/07/03/56279.html'</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);">阅读全文</span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">/a</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);">⾿</span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">img src ="http://www.blogjava.net/border/aggbug/56279.html" width = "1" height = "1" /</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">br</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">br</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">div align=right</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">a style="text-decoration:none;" href="/border/" target="_blank"</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);">Border</span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">/a</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);"> 2006-07-03 12:13 </span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">a href="/border/archive/2006/07/03/56279.html#Feedback" target="_blank" style="text-decoration:none;"</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 0);">发表评论</span><span style="color: rgb(255, 0, 0);">&amp;lt;</span><span style="color: rgb(0, 0, 0);">/a</span><span style="color: rgb(255, 0, 0);">&amp;gt;&amp;lt;</span><span style="color: rgb(0, 0, 0);">/div</span><span style="color: rgb(255, 0, 0);">&amp;gt;</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">description</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">34</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">pubDate</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">Mon, 03 Jul 2006 04:13:00 GMT</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">pubDate</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">35</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">guid </span><span style="color: rgb(255, 0, 0);">isPermaLink</span><span style="color: rgb(0, 0, 255);">="false"</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">http://www.blogjava.net/border/archive/2006/07/03/56279.html</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">guid</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">36</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">dc:creator</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">Border</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">dc:creator</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">37</span> <span style="color: rgb(0, 0, 0);">      </span><span style="color: rgb(0, 0, 255);">&lt;</span><span style="color: rgb(128, 0, 0);">dc:date</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);">2006-07-03T04:13:00Z</span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">dc:date</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">38</span> <span style="color: rgb(0, 0, 0);">    </span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">item</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">39</span> <span style="color: rgb(0, 0, 0);">  </span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">channel</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">40</span> <span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 255);">&lt;/</span><span style="color: rgb(128, 0, 0);">rss</span><span style="color: rgb(0, 0, 255);">&gt;</span><span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">41</span> <span style="color: rgb(0, 0, 0);"><br /></span><span style="color: rgb(0, 128, 128);">42</span> <span style="color: rgb(0, 0, 0);"></span></div><br /><br /><div align="right">By:border<br /></div></wbr></wbr></wbr>
		</div>
<img src ="http://www.blogjava.net/border/aggbug/57848.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/border/" target="_blank">BorderJ</a> 2006-07-12 18:37 <a href="http://www.blogjava.net/border/archive/2006/07/12/57848.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>免费MySQL数据库申请</title><link>http://www.blogjava.net/border/archive/2006/07/06/57015.html</link><dc:creator>BorderJ</dc:creator><author>BorderJ</author><pubDate>Thu, 06 Jul 2006 11:05:00 GMT</pubDate><guid>http://www.blogjava.net/border/archive/2006/07/06/57015.html</guid><wfw:comment>http://www.blogjava.net/border/comments/57015.html</wfw:comment><comments>http://www.blogjava.net/border/archive/2006/07/06/57015.html#Feedback</comments><slash:comments>19</slash:comments><wfw:commentRss>http://www.blogjava.net/border/comments/commentRss/57015.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/border/services/trackbacks/57015.html</trackback:ping><description><![CDATA[ <a href="http://www.db4free.net/"><img alt="" src="http://www.kuangfeng.cn/blog/wp-content/uploads/2006/03/db4free.jpg" align="left" border="0" /></a><br /><br /><br /><br /><a href="http://www.db4free.net/">Db4free</a>：专业提供免费数据库服务，支持 MySQL 5.0，5.1，支持使用Phpmyadmin进行管理，以后还将扩展支持PostgreSQL, Firebird 等数据库.<img src ="http://www.blogjava.net/border/aggbug/57015.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/border/" target="_blank">BorderJ</a> 2006-07-06 19:05 <a href="http://www.blogjava.net/border/archive/2006/07/06/57015.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title> 刚刚大厦晃的利害，是不是有些地震呀 --  北京</title><link>http://www.blogjava.net/border/archive/2006/07/04/56502.html</link><dc:creator>BorderJ</dc:creator><author>BorderJ</author><pubDate>Tue, 04 Jul 2006 04:20:00 GMT</pubDate><guid>http://www.blogjava.net/border/archive/2006/07/04/56502.html</guid><wfw:comment>http://www.blogjava.net/border/comments/56502.html</wfw:comment><comments>http://www.blogjava.net/border/archive/2006/07/04/56502.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.blogjava.net/border/comments/commentRss/56502.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/border/services/trackbacks/56502.html</trackback:ping><description><![CDATA[      刚刚大厦晃的利害，是不是有些地震呀 ，在17层感觉比较厉害，不知道在北京的其他同志有没有注意到。<img src ="http://www.blogjava.net/border/aggbug/56502.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/border/" target="_blank">BorderJ</a> 2006-07-04 12:20 <a href="http://www.blogjava.net/border/archive/2006/07/04/56502.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>通过js等比扩大图片的比例</title><link>http://www.blogjava.net/border/archive/2006/07/03/56279.html</link><dc:creator>BorderJ</dc:creator><author>BorderJ</author><pubDate>Mon, 03 Jul 2006 04:13:00 GMT</pubDate><guid>http://www.blogjava.net/border/archive/2006/07/03/56279.html</guid><wfw:comment>http://www.blogjava.net/border/comments/56279.html</wfw:comment><comments>http://www.blogjava.net/border/archive/2006/07/03/56279.html#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://www.blogjava.net/border/comments/commentRss/56279.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/border/services/trackbacks/56279.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要:     在做web开发的时候，显示图片是经常用到。在默认的情况下图片是扩充，但是有的时候显示效果会不如人意。有时容器的大小是固定的，我们要把图片等比扩大。&nbsp;&nbsp;<a href='http://www.blogjava.net/border/archive/2006/07/03/56279.html'>阅读全文</a><img src ="http://www.blogjava.net/border/aggbug/56279.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/border/" target="_blank">BorderJ</a> 2006-07-03 12:13 <a href="http://www.blogjava.net/border/archive/2006/07/03/56279.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>