<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0' xmlns:dc='http://purl.org/dc/elements/1.1/'>
<channel>
<title>CSDN技术网摘 -- wz.csdn.net - jdlsfl的网摘</title>
<description>CSDN技术网摘 -- wz.csdn.net - jdlsfl的网摘</description>
<link>http://wz.csdn.com/rss/jdlsfl/</link>
<generator>CSDN网摘 (http://wz.csdn.net)</generator>
<language>zh-cn</language>
<docs>CSDN网摘 包罗技术精华</docs>
<item>
<title>WebLogic Server实现双向SSL </title>
<link>http://soft.zdnet.com.cn/software_zone/2008/0923/1144606.shtml</link>
<guid isPermaLink="true">http://soft.zdnet.com.cn/software_zone/2008/0923/1144606.shtml</guid>
<category>中间件</category>
<pubDate>Sat, 27 Sep 2008 08:26:00 GMT</pubDate>
<description><blockquote>来源：ZDNET软件频道

目前网络上很多描述实现SSL的文章，但是要么是局限于理论，要么是配置单向SSL的，要么是基于Tomcat的，即便是和WebLogic Server相关的，也没有为读者提供一个可依照实现的操作。本文参考其它文档，主要描述了在Windows下如何实现WebLogic Server的双向SSL配置，并且客户端和服务器端采用了不同的证书来源，希望能够为读者提供一个具有可操作性的参考。

　　文中的操作在笔者计算机上完全测试通过。

前期准备
　　笔者的操作系统是Windows XP SP2，安装的软件有

　　Microsoft Visual Studio 6.0（主要是VC++），安装目录MVS_HOME

　　BEA的WebLogic Server 8.1.5，安装目录BEA_HOME

　　JDK1.4.2.8，安装WebLogic Server后带有，目录为%BEA_HOME%jdk142_08

　　在实现过程中需要的软件有：

　　Perl for win32

　　下载地址http://www.activestate.com/ActivePerl

　　Openssl

　　下载地址http://www.openssl.org

　　在生成证书和私钥时，我们使用了openssl软件，由于openssl软件在windows上安装需要perl环境，因此我们需要下载Active Perl相关软件，并且需要安装VC++或者Delphi，以便编译安装openssl。

　　对于各个软件的初始化设置，主要是设置环境变量，通过“我的电脑”右键，“属性”－“高级”－“环境变量”，添加如下：

　　Classpath =%BEA_HOME%weblogic81serverlibweblogic.jar

　　INCLUDE =%MVS_HOME%VC98Include

　　LIB =%MVS_HOME%VC98Lib

　　在Path环境变量中增加（编译openssl使用）

　　%MVS_HOME%VC98Bin; %MVS_HOME%CommonMSDev98Bin

　　在Path环境变量中增加（java相关命令使用）

　　%BEA_HOME%jdk142_08in; 

安装openssl
安装ActivePerl 
　　ActivePerl下载的是.msi文件，点击后可以安装，安装后，在path环境变量中增加

　　%PERL_HOME%in

安装openssl 
　　下载openssl的压缩源文件以后，解开压缩到目录openssl-xxxd目录，通过DOS窗口，进入到openssl-xxxs目录后，执行

　　perl Configure VC-WIN32 --prefix=c:/openssl

　　其中c:/openssl为准备安装openssl的目录，笔者安装在C:openssl目录下，注意要写作/，否则会在编译cversion.c文件时出现错误信息。

　　执行msdo_ms

　　如果上述执行没有错误，则创建相应的安装目录，然后执行

　　nmake -f ms tdll.mak install

　　安装openssl，编译的时间比较长，请耐心等待，并且确认没有错误。

环境变量 
　　Openssl安装成功以后，需要在path中增加如下的环境变量

　　%OPENSSL_HOME%in

　　增加环境变量OPENSSL_CONF=%OPENSSL_HOME%openssl.cnf

建立自己的CA证书
在BEA_HOME下建立目录ca，重新启动DOS窗口，进入到BEA_HOME目录下。 
生成CA密钥 
　　openssl genrsa -out ca/ca-key.pem 1024

生成待签名的证书 
　　openssl req -new -out ca/ca-req.csr -key ca/ca-key.pem

　　在生成待签名的证书时，会询问个人或者单位的信息，依次会询问国家，省，地区，组织，部门，名称和邮件信息，并且会询问一些附加信息，作为测试，读者可以依据下面的图片填写，也可以输入自己有关的信息。

用CA私钥自签名 
　　openssl x509 -req -in ca/ca-req.csr -out ca/ca-cert.pem -signkey ca/ca-key.pem -days 365

　　生成WebLogic Server证书

　　在WebLogic Server这边，我们会使用它提供的用于demo的私钥和数字证书，在%BEA_HOME%下创建目录server，拷贝%BEA_HOME%weblogic81serverlib下的CertGenCA.der和CertGenCAKey.der文件到%BEA_HOME%server下。

生成证书，DOS窗口下进入目录%BEA_HOME%执行命令： 
　　java utils.CertGen password serverCertGenCA.der serverCertGenCAKey.der export

　　将会生成CertGenCA.der.pem和CertGenCAKey.der.pem文件

建立keystore，并且将证书和私钥装入keystore 
　　java utils.ImportPrivateKey servermykeystore password myserver password serverCertGenCA.der.pem serverCertGenCAKey.der.pem

将CA证书导入到验证keystore中 
　　keytool -import -v -trustcacerts -storepass password -alias my_ca_root -file ca/ca-cert.pem -keystore server/cacerts

　　此处如果提示找不到keytool，要看一下JDK in的目录是否在path变量中设置正确。

　　如果询问是否“信任这个认证”，输入y回车，可以看到信息说明认证已经添加到keystore中。

显示验证keystore内容 
　　keytool -list -keystore server/cacerts

　　输入密码password（我们前面建立keystore是设置的），显示的内容应该类似如下：

C:ea&gt;keytool -list -keystore server/cacerts
输入keystore密码：  password

Keystore 类型： jks
Keystore 提供者： SUN

您的 keystore 包含 2 输入

my_ca_root, 2006-11-21, trustedCertEntry,
认证指纹 (MD5)： 38:32:AC:05:D9:4B:80:ED:43:43:9D:C5:2C:58:72:63
显示服务器keystore内容 
　　keytool -list -keystore server/mykeystore

　　输入密码password（我们前面建立keystore是设置的），显示的内容应该类似如下： 

C:ea&gt;keytool -list -keystore server/mykeystore
输入keystore密码：  password

Keystore 类型： jks
Keystore 提供者： SUN

您的 keystore 包含 1 输入

myserver, 2006-11-21, keyEntry,
认证指纹 (MD5)： 3D:1E:C1:67:FF:82:5A:4F:AE:18:63:18:97:3C:8E:0D
配置WebLogic Server
　　建立一个新的WebLogic Server的Domain。

　　启动WebLogic Server，通过console登录进管理界面，进入“myserver”－“Configuration”－“General”，选中“SSL Listen Port Enabled”复选框，并且设定https的端口为7002，进入“myserver”－“Configuration-Keystores &amp; SSL”，点击“Keystore Configuration”后面的“Change”，选择“Custom Identity and Custom Trust”，如下图设置：

　　其中目录可根据自己安装的BEA_HOME进行修改，Pass Phrase部分都输入“password”。

　　点击“Continue”，在“Private Key Alias”中输入myserver，Pass Phrase部分依然输入“password”，最后点击“finish”结束。

　　回到“myserver”－“Configuration”-“Keystores &amp; SSL”配置页面，点击“Advanced Options”后面的“change”，将“Two Way Client Cert Behavior:”部分修改为“Client certs requested and enforced”。

　　应用后重新启动WebLogic Server。

　　观察WebLogic Server启动时候的控制台，正确配置后应该有如下类似的信息：
生成客户端IE证书
建立自己的Client目录，例如：client 
生成Client密钥对 
　　openssl genrsa -out client/client-key.pem 1024

生成待签名的证书 
　　openssl req -new -out client/client-req.csr -key client/client-key.pem

　　同样在询问中输入个人证书的一些信息，确定后生成。

用CA私钥签名 
　　openssl x509 -req -in client/client-req.csr -out client/client-cert.pem -signkey client/client-key.pem -CA ca/ca-cert.pem -CAkey ca/ca-key.pem -CAcreateserial -days 365

生成Client端可以导入的个人证书 
　　openssl pkcs12 -export -clcerts -in client/client-cert.pem -inkey client/client-key.pem -out client/client.p12

　　询问设置导出密码时可以不填写，直接回车。

将client证书导入IE
　　在资源管理器中选择文件client.p12，鼠标右键，选择“安装PFX”，在密码页，密码部分可以不输入，选择“标志此密钥为可导出的”的复选框，将证书存储于“个人”区域，成功导入后，在IE窗口显示类似如下：

访问WebLogic Server
　　通过 https://serverip:7002/console/ 访问WebLogic Server，虽然服务器设置为需要客户端认证，但是由于我们导入了证书，因此可以访问。

   
   
     
     
　　查看WebLogic Server控制台，可以看到如下信息：

　　删除导入的证书，重新使用 https://serverip:7002/console/ 访问服务器，则页面无法打开，控制台显示信息如下，说明客户端证书验证失败：

   
 
       
</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>架构师观点：将EJB组件公开为业务服务（三） , 外观,分层,服务,ejb,请求,接口,集群,结构,嵌套,耦合, , - CSDN 新闻</title>
<link>http://news.csdn.net/n/20070110/100509.html</link>
<guid isPermaLink="true">http://news.csdn.net/n/20070110/100509.html</guid>
<category></category>
<pubDate>Sat, 27 Sep 2008 08:25:05 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>用人类自然的语言说泛型，保证一听既懂，一懂就会啦</title>
<link>http://topic.csdn.net/u/20070903/17/0b06562a-19b9-4bae-85c3-0fb1ae1d6037.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20070903/17/0b06562a-19b9-4bae-85c3-0fb1ae1d6037.html</guid>
<category></category>
<pubDate>Fri, 26 Sep 2008 16:53:08 GMT</pubDate>
<description><blockquote>大概可以提高200%，引用类型大概为</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>JavaScript使用技巧精萃</title>
<link>http://topic.csdn.net/u/20080527/10/7f580777-1a3d-44fc-8806-55f9d79d0c65.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080527/10/7f580777-1a3d-44fc-8806-55f9d79d0c65.html</guid>
<category>JavaScript使用技巧精萃</category>
<pubDate>Mon, 08 Sep 2008 03:01:46 GMT</pubDate>
<description><blockquote>JavaScript使用技巧精萃</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>求SQL SERVER命令大全 MS-SQL Server / 基础类 - CSDN社区 community.csdn.net</title>
<link>http://topic.csdn.net/t/20061102/09/5126833.html</link>
<guid isPermaLink="true">http://topic.csdn.net/t/20061102/09/5126833.html</guid>
<category>oracle</category>
<pubDate>Sat, 06 Sep 2008 16:13:20 GMT</pubDate>
<description><blockquote>oracle</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>oracle面试题目总结---（300分相赠）！</title>
<link>http://topic.csdn.net/u/20080731/21/4b8eb01e-0523-4898-be3f-9cddc3b3a5b3.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080731/21/4b8eb01e-0523-4898-be3f-9cddc3b3a5b3.html</guid>
<category>oracle</category>
<pubDate>Sat, 06 Sep 2008 16:13:02 GMT</pubDate>
<description><blockquote>帮忙多留点啊，或许对我以后的面试会有帮助！</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>求JS JSP截图</title>
<link>http://topic.csdn.net/u/20080819/13/b737953f-a449-45a4-bd2c-0270a7ddb0a3.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080819/13/b737953f-a449-45a4-bd2c-0270a7ddb0a3.html</guid>
<category></category>
<pubDate>Mon, 01 Sep 2008 16:54:01 GMT</pubDate>
<description><blockquote>如题 
  要求可以用鼠标拖动截图区大小和显示截图区预览 
鼠标双击后截取图片存储到指定文件夹</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>写得蛮好的linux学习笔记</title>
<link>http://topic.csdn.net/u/20070302/11/8d39802a-17b3-42b2-81ec-8f547811a728.html#</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20070302/11/8d39802a-17b3-42b2-81ec-8f547811a728.html#</guid>
<category>linux</category>
<pubDate>Sun, 31 Aug 2008 13:04:14 GMT</pubDate>
<description><blockquote>linux</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>我的学习笔记——基础报表制作2</title>
<link>http://topic.csdn.net/u/20080731/10/9e93c514-2071-42e0-a69b-f7a5cac692b6.html?seed=804932902</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080731/10/9e93c514-2071-42e0-a69b-f7a5cac692b6.html?seed=804932902</guid>
<category>report</category>
<pubDate>Mon, 04 Aug 2008 01:49:01 GMT</pubDate>
<description><blockquote>report</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>JavaScript使用技巧精萃</title>
<link>http://topic.csdn.net/u/20080527/10/7f580777-1a3d-44fc-8806-55f9d79d0c65.html?seed=1213248990</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080527/10/7f580777-1a3d-44fc-8806-55f9d79d0c65.html?seed=1213248990</guid>
<category>javascript</category>
<pubDate>Mon, 04 Aug 2008 01:19:11 GMT</pubDate>
<description><blockquote>javascript</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>初学者对java匿名内部类构造原理的分析 （散分）</title>
<link>http://topic.csdn.net/u/20080728/20/d60f719a-c103-44b8-8d0c-bc1c818b768a.html?seed=1708126146</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080728/20/d60f719a-c103-44b8-8d0c-bc1c818b768a.html?seed=1708126146</guid>
<category>匿名内部类</category>
<pubDate>Mon, 28 Jul 2008 12:45:55 GMT</pubDate>
<description><blockquote>匿名内部类</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>收集，提高java运行效率的各种技巧！</title>
<link>http://topic.csdn.net/u/20080717/13/7d249d4c-44a5-4ada-a65b-8b3637054f66.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080717/13/7d249d4c-44a5-4ada-a65b-8b3637054f66.html</guid>
<category>效率</category>
<pubDate>Thu, 17 Jul 2008 05:54:43 GMT</pubDate>
<description><blockquote>效率</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>分享:java经典题目</title>
<link>http://topic.csdn.net/u/20080617/15/706679c5-e108-4ec0-801b-75728ad19fe6.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080617/15/706679c5-e108-4ec0-801b-75728ad19fe6.html</guid>
<category>java</category>
<pubDate>Thu, 17 Jul 2008 01:48:13 GMT</pubDate>
<description><blockquote>java</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>SQL语句优化汇总</title>
<link>http://topic.csdn.net/u/20080716/11/2317d040-48e7-42da-822e-040b4c55b46d.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080716/11/2317d040-48e7-42da-822e-040b4c55b46d.html</guid>
<category></category>
<pubDate>Wed, 16 Jul 2008 04:01:25 GMT</pubDate>
<description><blockquote>表大而内表小的</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>分享内部类的整理和测试代码</title>
<link>http://topic.csdn.net/u/20080715/07/df0e8df1-4cb4-4e50-8107-4f943c8030e6.html?seed=122653487</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080715/07/df0e8df1-4cb4-4e50-8107-4f943c8030e6.html?seed=122653487</guid>
<category>内部类</category>
<pubDate>Tue, 15 Jul 2008 01:59:37 GMT</pubDate>
<description><blockquote>内部类</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>java数据库连接池,大家来看看</title>
<link>http://topic.csdn.net/u/20080427/13/13f5ea7f-2fbd-4a34-a106-88ac46858493.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080427/13/13f5ea7f-2fbd-4a34-a106-88ac46858493.html</guid>
<category>java数据库连接池</category>
<pubDate>Mon, 14 Jul 2008 17:26:07 GMT</pubDate>
<description><blockquote>java数据库连接池</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>开源，选择Google Code还是Sourceforge？（修订版） - StdExt/TPL/WinxGui/Erlang/Erlana - 许式伟的专栏 - CSDNBlog</title>
<link>http://blog.csdn.net/xushiweizh/archive/2007/11/25/1901900.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/xushiweizh/archive/2007/11/25/1901900.aspx</guid>
<category>开源</category>
<pubDate>Mon, 14 Jul 2008 08:04:07 GMT</pubDate>
<description><blockquote>开源</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>程序员怎样学数学：半路出家也能让编程是小菜一碟 , 数学,math,程序员,代数,ll,teaching,know,learning,algebra,school,dotnet频道, , - CSDN 新闻</title>
<link>http://news.csdn.net/n/20071030/110047.html</link>
<guid isPermaLink="true">http://news.csdn.net/n/20071030/110047.html</guid>
<category>math</category>
<pubDate>Thu, 10 Jul 2008 14:47:05 GMT</pubDate>
<description><blockquote>math</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>最近要设计一个框架,大家一起讨论下如何实现? - gonxi的专栏 - CSDNBlog</title>
<link>http://blog.csdn.net/gonxi/archive/2008/07/07/2623148.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/gonxi/archive/2008/07/07/2623148.aspx</guid>
<category>struts,2</category>
<pubDate>Mon, 07 Jul 2008 17:15:04 GMT</pubDate>
<description><blockquote>struts 2 freemarker</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>发帖占位：编写高性能 Web 应用程序的 10 个技巧 转自微软资料</title>
<link>http://topic.csdn.net/u/20080702/15/25afa2ea-c59f-427f-add4-a7528b5302d0.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080702/15/25afa2ea-c59f-427f-add4-a7528b5302d0.html</guid>
<category>web</category>
<pubDate>Fri, 04 Jul 2008 01:17:44 GMT</pubDate>
<description><blockquote>web</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>我来做个好人吧，40种网站设计常用技巧 Java / Web 开发 - CSDN社区 community.csdn.net</title>
<link>http://topic.csdn.net/t/20061220/16/5244445.html</link>
<guid isPermaLink="true">http://topic.csdn.net/t/20061220/16/5244445.html</guid>
<category>javascript</category>
<pubDate>Thu, 03 Jul 2008 14:25:02 GMT</pubDate>
<description><blockquote>javascript</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>【PP_LP专栏】IT男士专用餐单（养生）</title>
<link>http://topic.csdn.net/u/20080702/10/f1e3f82d-a463-415e-9339-0980ee6ee7f4.html?seed=873331292</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080702/10/f1e3f82d-a463-415e-9339-0980ee6ee7f4.html?seed=873331292</guid>
<category>IT男士专用餐单</category>
<pubDate>Thu, 03 Jul 2008 13:51:08 GMT</pubDate>
<description><blockquote>IT男士专用餐单</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>SQL注入攻击的种类和防范手段 , 语句,sql注入,漏洞,攻击,攻击者,代码,用户,输入,扫描,木马, , - CSDN 新闻</title>
<link>http://news.csdn.net/n/20080626/116978.html</link>
<guid isPermaLink="true">http://news.csdn.net/n/20080626/116978.html</guid>
<category>SQL注入攻击的种类和防范手段</category>
<pubDate>Thu, 03 Jul 2008 08:13:04 GMT</pubDate>
<description><blockquote>SQL注入攻击的种类和防范手段</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>MySQL数据库表中怎么存入汉字？</title>
<link>http://topic.csdn.net/u/20080623/18/70711fed-bc67-464a-b4f9-37c2d91d653b.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080623/18/70711fed-bc67-464a-b4f9-37c2d91d653b.html</guid>
<category></category>
<pubDate>Mon, 30 Jun 2008 04:37:34 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>JSP的内置对象及方法。</title>
<link>http://topic.csdn.net/u/20080629/04/54a893b3-0bc3-4bce-a335-5db6d8c86c5d.html?seed=1623033546</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080629/04/54a893b3-0bc3-4bce-a335-5db6d8c86c5d.html?seed=1623033546</guid>
<category></category>
<pubDate>Sun, 29 Jun 2008 01:42:45 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>对Java多态性综合运用的探讨 - 海纳百川,有容乃大! - CSDNBlog</title>
<link>http://blog.csdn.net/yirentianran/archive/2008/04/25/2327349.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/yirentianran/archive/2008/04/25/2327349.aspx</guid>
<category></category>
<pubDate>Sat, 28 Jun 2008 03:20:34 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>JSP内置对象 - 钱凌学习中 - CSDNBlog</title>
<link>http://blog.csdn.net/qianling3439/archive/2007/09/04/1771753.aspx</link>
<guid isPermaLink="true">http://blog.csdn.net/qianling3439/archive/2007/09/04/1771753.aspx</guid>
<category></category>
<pubDate>Thu, 26 Jun 2008 09:09:17 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>java中的io系统总结</title>
<link>http://topic.csdn.net/u/20080619/10/30ead5c6-8410-46c4-b9a1-f14522983eac.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080619/10/30ead5c6-8410-46c4-b9a1-f14522983eac.html</guid>
<category></category>
<pubDate>Tue, 24 Jun 2008 03:07:15 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>终于搞清楚了C#二进制的一些关键操作了,解决了微软面试题，求数组中两两之差绝对值最小的值O(N)最少内存限制的问题!</title>
<link>http://topic.csdn.net/u/20071016/16/6734119d-27dd-4efd-91ea-a9290d6545c0.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20071016/16/6734119d-27dd-4efd-91ea-a9290d6545c0.html</guid>
<category></category>
<pubDate>Tue, 24 Jun 2008 03:04:31 GMT</pubDate>
<description><blockquote>看过CSDN首页精华贴的人的确不知道这题目</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>【竞赛】排序算法的最快实现</title>
<link>http://topic.csdn.net/u/20080623/14/23ab6317-1179-4c24-bb41-39b2d00697d5.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080623/14/23ab6317-1179-4c24-bb41-39b2d00697d5.html</guid>
<category></category>
<pubDate>Tue, 24 Jun 2008 03:03:58 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>大型互联网网站架构心得之一：分 - LoveCherry的专栏 - CSDNBlog</title>
<link>http://blog.csdn.net/LoveCherry/archive/2008/06/19/2564096.aspx#826690</link>
<guid isPermaLink="true">http://blog.csdn.net/LoveCherry/archive/2008/06/19/2564096.aspx#826690</guid>
<category></category>
<pubDate>Thu, 19 Jun 2008 05:25:49 GMT</pubDate>
<description><blockquote>知道，对于一个大型网站来说，可伸缩性是</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>分享:java经典题目</title>
<link>http://topic.csdn.net/u/20080617/15/706679c5-e108-4ec0-801b-75728ad19fe6.html?seed=1303389581</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080617/15/706679c5-e108-4ec0-801b-75728ad19fe6.html?seed=1303389581</guid>
<category></category>
<pubDate>Tue, 17 Jun 2008 08:46:04 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>总结了一下对数据库连接的操作,大家来看看</title>
<link>http://topic.csdn.net/u/20080616/23/380b6cc7-db6d-452d-9c16-5973d7427f8e.html?seed=279875739</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080616/23/380b6cc7-db6d-452d-9c16-5973d7427f8e.html?seed=279875739</guid>
<category></category>
<pubDate>Mon, 16 Jun 2008 15:08:05 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>实现两个数据库的同步</title>
<link>http://topic.csdn.net/u/20080523/11/08e4624a-13d1-4a6c-a9bc-7cfdd721a351.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080523/11/08e4624a-13d1-4a6c-a9bc-7cfdd721a351.html</guid>
<category></category>
<pubDate>Sat, 14 Jun 2008 01:20:02 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>求解,java中graphics,drawstring乱码问题(2)</title>
<link>http://topic.csdn.net/u/20080603/13/3590c1f9-30bc-4e4d-bb2a-ada472b05973.html?seed=123437314</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080603/13/3590c1f9-30bc-4e4d-bb2a-ada472b05973.html?seed=123437314</guid>
<category></category>
<pubDate>Tue, 03 Jun 2008 12:49:52 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>jsp基础速成精华讲解 原创</title>
<link>http://topic.csdn.net/u/20080329/21/d3a1f226-9cc1-4cc3-9b1f-23a5637776af.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080329/21/d3a1f226-9cc1-4cc3-9b1f-23a5637776af.html</guid>
<category></category>
<pubDate>Mon, 02 Jun 2008 07:11:41 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>10个重要的算法C语言实现源代码：拉格朗日，牛顿插值，高斯，龙贝格，牛顿迭代，牛顿-科特斯，雅克比，秦九昭，幂法，高斯塞德尔</title>
<link>http://topic.csdn.net/u/20080509/13/d4500a19-10aa-4fdf-b876-8e30f4daa331.html?seed=1798747162</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080509/13/d4500a19-10aa-4fdf-b876-8e30f4daa331.html?seed=1798747162</guid>
<category></category>
<pubDate>Sat, 31 May 2008 10:44:53 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>火龙果300分，感谢火龙果的热心帮忙，感谢老紫竹群中的每个人，另开帖给分</title>
<link>http://topic.csdn.net/u/20080527/09/7bb01bce-ff00-4904-a1d1-d7ee8102c1a4.html?seed=1485884444</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080527/09/7bb01bce-ff00-4904-a1d1-d7ee8102c1a4.html?seed=1485884444</guid>
<category>权限管理系统</category>
<pubDate>Tue, 27 May 2008 01:57:31 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>SQL SERVER 不能连接的完美解决方案</title>
<link>http://topic.csdn.net/u/20080405/06/fc8e48d0-b84c-4642-88f0-390a9295a27e.html?1698261955</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080405/06/fc8e48d0-b84c-4642-88f0-390a9295a27e.html?1698261955</guid>
<category></category>
<pubDate>Thu, 22 May 2008 14:42:50 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>Ajax学习资料集锦！</title>
<link>http://topic.csdn.net/u/20080521/20/af66012b-8fdf-4321-9476-e99c964b830f.html?seed=260615079</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080521/20/af66012b-8fdf-4321-9476-e99c964b830f.html?seed=260615079</guid>
<category></category>
<pubDate>Thu, 22 May 2008 01:17:05 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>struts带来的巨大烦恼…是不是系统做大了都不能使用struts? Java / 框架、开源 - CSDN社区 community.csdn.net</title>
<link>http://topic.csdn.net/t/20060519/14/4764017.html</link>
<guid isPermaLink="true">http://topic.csdn.net/t/20060519/14/4764017.html</guid>
<category></category>
<pubDate>Sat, 17 May 2008 09:39:58 GMT</pubDate>
<description><blockquote>http://blog.csdn.net/daveeyang</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>提高网页打开速度的一些小技巧</title>
<link>http://topic.csdn.net/u/20080515/13/76337b8b-93dd-4d9c-b633-2e59d9448395.html?seed=603966345</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080515/13/76337b8b-93dd-4d9c-b633-2e59d9448395.html?seed=603966345</guid>
<category></category>
<pubDate>Fri, 16 May 2008 01:08:49 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>SQL 收藏------------SQL操作全集</title>
<link>http://topic.csdn.net/u/20080515/16/6f359854-5403-4397-89e3-b1b8dd71d527.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080515/16/6f359854-5403-4397-89e3-b1b8dd71d527.html</guid>
<category>SQL</category>
<pubDate>Fri, 16 May 2008 00:58:39 GMT</pubDate>
<description><blockquote>sql</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>JavaScript实例自学手册:通过486个例子掌握Web开发捷径 - 免费试读 - book.csdn.net</title>
<link>http://book.csdn.net/bookfiles/695/#c1</link>
<guid isPermaLink="true">http://book.csdn.net/bookfiles/695/#c1</guid>
<category></category>
<pubDate>Thu, 15 May 2008 11:43:32 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>用Group by分组后,取每组的前3条记录,怎么取? MS-SQL Server / 基础类 - CSDN社区 community.csdn.net</title>
<link>http://topic.csdn.net/t/20060101/14/4494002.html</link>
<guid isPermaLink="true">http://topic.csdn.net/t/20060101/14/4494002.html</guid>
<category></category>
<pubDate>Wed, 14 May 2008 09:43:21 GMT</pubDate>
<description><blockquote>Group   by分组,然后取每组的前3</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>JAVA访问联通http接口 提示登录信息失效 大家帮我看看</title>
<link>http://topic.csdn.net/u/20080512/15/30d335b5-3663-4acc-979a-40c618e7b4c2.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080512/15/30d335b5-3663-4acc-979a-40c618e7b4c2.html</guid>
<category></category>
<pubDate>Tue, 13 May 2008 07:08:20 GMT</pubDate>
<description><blockquote>一短信到OA系统中 在使用联通http接口过程中出了问题：调用接口登陆成功 发送失败 返回值-2 意思是登陆信息失效 我想知道是什么原因 大家帮我看看是否我的程序除了问题 以下是简单得测试程序：</blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>分解字符串并查询相关数据(为MVP准备的文章)</title>
<link>http://topic.csdn.net/u/20080512/14/687202c1-5ea2-493e-b86c-e43a8e12f277.html?seed=1077267392</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080512/14/687202c1-5ea2-493e-b86c-e43a8e12f277.html?seed=1077267392</guid>
<category></category>
<pubDate>Tue, 13 May 2008 07:03:40 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>软件测试内容全貌——全景图(1)</title>
<link>http://topic.csdn.net/u/20080118/10/cff32eb5-67e9-459d-8088-4f30d5cb2b8c.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080118/10/cff32eb5-67e9-459d-8088-4f30d5cb2b8c.html</guid>
<category></category>
<pubDate>Mon, 12 May 2008 13:05:48 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>调查：学习java的难点和重点在哪里？学习J2EE的难点和重点在哪里？</title>
<link>http://topic.csdn.net/u/20080510/17/2e1d28e0-b4ec-4d56-9a4d-0d3407c41bf9.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080510/17/2e1d28e0-b4ec-4d56-9a4d-0d3407c41bf9.html</guid>
<category></category>
<pubDate>Mon, 12 May 2008 10:12:01 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
<item>
<title>常用数据库的链接方法</title>
<link>http://topic.csdn.net/u/20080502/09/10b0ca73-bc47-4ba1-9106-7b5489e503f0.html</link>
<guid isPermaLink="true">http://topic.csdn.net/u/20080502/09/10b0ca73-bc47-4ba1-9106-7b5489e503f0.html</guid>
<category></category>
<pubDate>Sat, 10 May 2008 05:59:29 GMT</pubDate>
<description><blockquote></blockquote></description>
<dc:creator>jdlsfl</dc:creator>
</item>
</channel></rss>
