<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="http://feeds.qzone.qq.com/rss.xsl" version="1.0"?>
<rss version="2.0" xmlns:qz="http://qzone.qq.com">
<channel>
<title><![CDATA[正义]]></title>
<description><![CDATA[o紾悕o]]></description>
<link>http://393701934.qzone.qq.com</link>
<lastBuildDate>Mon, 30 Nov 2009 17:33:25 GMT</lastBuildDate>
<generator>Qzone</generator>
<language>zh-cn</language>
<copyright>Copyright (C), 2005-2008, Tencent Tech. Co., Ltd.</copyright>
<pubDate>Tue, 17 Nov 2009 04:24:02 GMT</pubDate>

<item>
<title><![CDATA[spring包中文件及各种jar包详解]]></title>
<link>http://393701934.qzone.qq.com/blog/1258431842</link>
<description><![CDATA[<span style="font-size:13px;line-height:1.8em;">aspectj目录下是在Spring框架下使用aspectj的源代码和测试程序文件。Aspectj是java最早的提供AOP的应用框架。 <br>dist 目录下是Spring 的发布包，关于发布包下面会详细进行说明。 <br>docs 目录下是相关的文档，包括有Spring api 的javadoc、reference 参考指南、Spring的标签库使用文件及Spring MVC 的MVC-step-by-step 讲解与示例。都是很好的文档，值得好好研究一下。 <br>lib 目录下是Spring 所依赖的第三方开源包。 <br>mock 目录下是Spring 辅助应用测试的Mock 源程序。 <br>samples 目录下是Spring 的示例源程序及简单的webapp 示例框架的示例配置，值得好好学习的有jpetstore 及petclinic，当然其它的countries、imagedb、tiles-example 也可以好好参考一下。 <br>src 目录下是Spring 的源程序。 <br>test 目录下Spring 的单元测试源程序。 <br>tiger 目录下是针对在Spring框架中使用java 1.5的源程序及测试程序。Tiger是jdk 1.5版本的开发代号。 </span><wbr /><br> <br><span style="font-size:13px;line-height:1.8em;">接下来详细说说dist 目录下jar 包的相关内容。了解这些内容有助于我们减小发布包的大小，同时也可以增加对Spring架构的了解。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring.jar 是包含有完整发布模块的单个jar 包。但是不包括mock.jar, aspects.jar, spring-portlet.jar, and spring-hibernate2.jar。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">spring-src.zip就是所有的源代码压缩包。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">除了spring.jar 文件，Spring 还包括有其它21 个独立的jar 包，各自包含着对应的Spring组件，用户可以根据自己的需要来选择组合自己的jar 包，而不必引入整个spring.jar 的所有类文件。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-core.jar<br>这个jar 文件包含Spring 框架基本的核心工具类。Spring 其它组件要都要使用到这个包里的类，是其它组件的基本核心，当然你也可以在自己的应用系统中使用这些工具类。<br>外部依赖Commons Logging， (Log4J)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-beans.jar<br>这个jar 文件是所有应用都要用到的，它包含访问配置文件、创建和管理bean 以及进行Inversion of Control / Dependency Injection（IoC/DI）操作相关的所有类。如果应用只需基本的IoC/DI 支持，引入spring-core.jar 及spring-beans.jar 文件就可以了。<br>外部依赖spring-core，(CGLIB)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-aop.jar<br>这个jar 文件包含在应用中使用Spring 的AOP 特性时所需的类和源码级元数据支持。使用基于AOP 的Spring特性，如声明型事务管理（Declarative Transaction Management），也要在应用里包含这个jar包。<br>外部依赖spring-core， (spring-beans，AOP Alliance， CGLIB，Commons Attributes)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-context.jar<br>这个jar 文件为Spring 核心提供了大量扩展。可以找到使用Spring ApplicationContext特性时所需的全部类，JDNI 所需的全部类，instrumentation组件以及校验Validation 方面的相关类。<br>外部依赖spring-beans, (spring-aop)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-dao.jar<br>这个jar 文件包含Spring DAO、Spring Transaction 进行数据访问的所有类。为了使用声明型事务支持，还需在自己的应用里包含spring-aop.jar。<br>外部依赖spring-core，(spring-aop， spring-context， JTA API)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-jdbc.jar<br>这个jar 文件包含对Spring 对JDBC 数据访问进行封装的所有类。<br>外部依赖spring-beans，spring-dao。</span><wbr /><br> <br><span style="font-size:13px;line-height:1.8em;">spring-support.jar<br>这个jar 文件包含支持UI模版（Velocity，FreeMarker，JasperReports），邮件服务，脚本服务(JRuby)，缓存Cache（EHCache），任务计划Scheduling（uartz）方面的类。<br>外部依赖spring-context, (spring-jdbc, Velocity, FreeMarker, JasperReports, BSH, Groovy, JRuby, Quartz, EHCache)</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-web.jar<br>这个jar 文件包含Web 应用开发时，用到Spring 框架时所需的核心类，包括自动载入Web Application Context 特性的类、Struts 与JSF 集成类、文件上传的支持类、Filter 类和大量工具辅助类。<br>外部依赖spring-context, Servlet API, (JSP API, JSTL, Commons FileUpload, COS)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-webmvc.jar<br>这个jar 文件包含Spring MVC 框架相关的所有类。包括框架的Servlets，Web MVC框架，控制器和视图支持。当然，如果你的应用使用了独立的MVC 框架，则无需这个JAR 文件里的任何类。<br>外部依赖spring-web, (spring-support，Tiles，iText，POI)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-portlet.jar<br>spring自己实现的一个类似Spring MVC的框架。包括一个MVC框架和控制器。<br>外部依赖spring-web， Portlet API，(spring-webmvc)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-struts.jar<br>Struts框架支持，可以更方便更容易的集成Struts框架。<br>外部依赖spring-web，Struts。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-remoting.jar<br>这个jar 文件包含支持EJB、远程调用Remoting（RMI、Hessian、Burlap、Http Invoker、JAX-RPC）方面的类。<br>外部依赖spring-aop， (spring-context，spring-web，Hessian，Burlap，JAX-RPC，EJB API)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-jmx.jar<br>这个jar包提供了对JMX 1.0/1.2的支持类。<br>外部依赖spring-beans，spring-aop， JMX API。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-jms.jar<br>这个jar包提供了对JMS 1.0.2/1.1的支持类。<br>外部依赖spring-beans，spring-dao，JMS API。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-jca.jar<br>对JCA 1.0的支持。<br>外部依赖spring-beans，spring-dao， JCA API。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-jdo.jar<br>对JDO 1.0/2.0的支持。<br>外部依赖spring-jdbc， JDO API， (spring-web)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-jpa.jar<br>对JPA 1.0的支持。<br>外部依赖spring-jdbc， JPA API， (spring-web)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-hibernate2.jar<br>对Hibernate 2.1的支持，已经不建议使用。<br>外部依赖spring-jdbc，Hibernate2，(spring-web)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-hibernate3.jar<br>对Hibernate 3.0/3.1/3.2的支持。<br>外部依赖spring-jdbc，Hibernate3，(spring-web)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-toplink.jar<br>对TopLink框架的支持。<br>外部依赖spring-jdbc，TopLink。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-ibatis.jar<br>对iBATIS SQL Maps的支持。<br>外部依赖spring-jdbc，iBATIS SQL Maps。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">另外的两个包。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-mock.jar<br>这个jar 文件包含Spring 一整套mock 类来辅助应用的测试。Spring 测试套件使用了其中大量mock 类，这样测试就更加简单。模拟HttpServletRequest 和HttpServletResponse 类在Web 应用单元测试是很方便的。并且提供了对JUnit的支持。<br>外部依赖spring-core。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-aspects.jar<br>提供对AspectJ的支持，以便可以方便的将面向方面的功能集成进IDE中，比如Eclipse AJDT。<br>外部依赖。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">WEAVER JARS (dist/weavers)说明。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-agent.jar<br>Spring的InstrumentationSavingAgent (为InstrumentationLoadTimeWeaver)，一个设备代理包，可以参考JDK1.5的Instrumentation功能获得更多信息。<br>外部依赖none (for use at JVM startup: &quot;-javaagent:spring-agent.jar&quot;)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">spring-tomcat-weaver.jar<br>扩展Tomcat的ClassLoader，使其可以使用instrumentation（设备）类。<br>外部依赖none (for deployment into Tomcat's &quot;server/lib&quot; directory)。</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">如果需要使用JSP语言作为Spring's web MVC tags的参数，则需要JSP 2.0的支持。或者选择Jakarta的JSTL (standard.jar)。</span><wbr /><br><span style="color:#000000;font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">如何选择这些发布包，决定选用哪些发布包其实相当简单。如果你正在构建Web 应用并将全程使用Spring，那么最好就使用单个全部的spring.jar 文件；如果你的应用仅仅用到简单的Inversion of Control / Dependency Injection（IoC/DI）容器，那么只需spring-core.jar与spring-beans.jar 即可；如果你对发布的大小要求很高，那么就得精挑细选了，只取包含自己所需特性的jar 文件了。采用独立的发布包你可以避免包含自己的应用不需要的全部类。<br>当然你可以采用其它的一些工具来设法令整个应用包变小，节省空间的重点在于准确地找出自己所需的Spring 依赖类，然后合并所需的类与包就可以了。Eclispe 有个插件叫ClassPathHelper 可以帮你找找所依赖的类 </span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /> <br><span style="font-size:13px;line-height:1.8em;">本文来自CSDN博客，转载请标明出处：</span><wbr /><a href="http://blog.csdn.net/anyoneking/archive/2009/01/07/3727962.aspx" target="_blank"><span style="font-size:13px;line-height:1.8em;">http://blog.csdn.net/anyoneking/archive/2009/01/07/3727962.aspx</span><wbr /></a><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[学习日志]]></category>
<author><![CDATA[393701934@qq.com(正义)]]></author>
<comments>http://393701934.qzone.qq.com/blog/1258431842#comment</comments>
<qz:effect>142606848</qz:effect>
<pubDate>Tue, 17 Nov 2009 04:24:02 GMT</pubDate>
<guid>http://393701934.qzone.qq.com/blog/1258431842</guid>
</item>

<item>
<title><![CDATA[《头文字》插曲 想要化作这夜]]></title>
<link>http://393701934.qzone.qq.com/blog/1243651947</link>
<description><![CDATA[<embed invokeURLs="false" allowNetworking="internal" allowscriptaccess="never" menu="false" id="flash0" width="492" height="409" src="http://player.youku.com/player.php/sid/XNzEyMDc2OA==/v.swf" /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[393701934@qq.com(正义)]]></author>
<comments>http://393701934.qzone.qq.com/blog/1243651947#comment</comments>
<qz:effect>134222336</qz:effect>
<pubDate>Sat, 30 May 2009 02:52:27 GMT</pubDate>
<guid>http://393701934.qzone.qq.com/blog/1243651947</guid>
</item>

<item>
<title><![CDATA[头文字D  m.o.v.e]]></title>
<link>http://393701934.qzone.qq.com/blog/1243651079</link>
<description><![CDATA[<embed invokeURLs="false" allowNetworking="internal" allowscriptaccess="never" menu="false" id="flash0" width="500" height="400" src="http://player.youku.com/player.php/sid/XNTUzMTQ4ODA=/v.swf" /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[393701934@qq.com(正义)]]></author>
<comments>http://393701934.qzone.qq.com/blog/1243651079#comment</comments>
<qz:effect>134222336</qz:effect>
<pubDate>Sat, 30 May 2009 02:37:59 GMT</pubDate>
<guid>http://393701934.qzone.qq.com/blog/1243651079</guid>
</item>

<item>
<title><![CDATA[Nobody Reason～ノアの方舟～]]></title>
<link>http://393701934.qzone.qq.com/blog/1243650691</link>
<description><![CDATA[<embed invokeURLs="false" allowNetworking="internal" allowscriptaccess="never" menu="false" id="flash0" width="500" height="400" src="http://player.youku.com/player.php/sid/XNTM1MDk5NjQ=/v.swf" /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[393701934@qq.com(正义)]]></author>
<comments>http://393701934.qzone.qq.com/blog/1243650691#comment</comments>
<qz:effect>134222336</qz:effect>
<pubDate>Sat, 30 May 2009 02:31:31 GMT</pubDate>
<guid>http://393701934.qzone.qq.com/blog/1243650691</guid>
</item>

<item>
<title><![CDATA[海贼王开头曲]]></title>
<link>http://393701934.qzone.qq.com/blog/1243650217</link>
<description><![CDATA[<embed invokeURLs="false" allowNetworking="internal" allowscriptaccess="never" menu="false" id="flash0" width="504" height="404" src="http://player.youku.com/player.php/sid/XOTMxNzk0NTI=/v.swf" /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[393701934@qq.com(正义)]]></author>
<comments>http://393701934.qzone.qq.com/blog/1243650217#comment</comments>
<qz:effect>134222336</qz:effect>
<pubDate>Sat, 30 May 2009 02:23:37 GMT</pubDate>
<guid>http://393701934.qzone.qq.com/blog/1243650217</guid>
</item>

<item>
<title><![CDATA[[转]【别删】黄色小图片]]></title>
<link>http://393701934.qzone.qq.com/blog/1232189771</link>
<description><![CDATA[<br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095637_49955496_P6U2YDi57cua.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095637_49955496_P6U2YDi57cua.jpg" /></a><wbr /><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095704_83180649_pRMwzBMkFCpA.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095704_83180649_pRMwzBMkFCpA.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095716_20741066_KcM6CZIvNLQe.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095716_20741066_KcM6CZIvNLQe.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095731_50971665_4AiOpngGwXAL.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095731_50971665_4AiOpngGwXAL.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095744_82098733_Jel0Ey8fQKjs.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095744_82098733_Jel0Ey8fQKjs.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095755_70850703_WiDi3ilQfXK2.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095755_70850703_WiDi3ilQfXK2.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095808_59129395_0XiVaiAmwGxX.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095808_59129395_0XiVaiAmwGxX.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095821_58721977_kn4xWnPY9hnp.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095821_58721977_kn4xWnPY9hnp.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095834_85796979_Y59H02rLDdFL.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095834_85796979_Y59H02rLDdFL.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095855_52337449_UKIPpATRTafa.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095855_52337449_UKIPpATRTafa.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095908_57599369_lxHn48uFt0m5.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095908_57599369_lxHn48uFt0m5.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095921_41439332_o9ilStlTGMHI.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095921_41439332_o9ilStlTGMHI.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706095947_73881851_nM2UvZUAjc2N.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706095947_73881851_nM2UvZUAjc2N.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706100001_53389594_50vZ5OT2Cctf.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706100001_53389594_50vZ5OT2Cctf.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706100015_42755284_hfVTUIXDrTOP.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706100015_42755284_hfVTUIXDrTOP.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706100028_37648348_MwhVU5zRt8Nh.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706100028_37648348_MwhVU5zRt8Nh.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706100048_87496129_qjpPwlWjUdUy.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706100048_87496129_qjpPwlWjUdUy.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706100102_83396800_x9mOPrkmofg0.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706100102_83396800_x9mOPrkmofg0.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706100116_37441802_4YgubtwNkKc3.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706100116_37441802_4YgubtwNkKc3.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706100133_58996012_Bk14Y3fZ6FOP.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706100133_58996012_Bk14Y3fZ6FOP.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706100145_21774559_k1G73VJkjr2L.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706100145_21774559_k1G73VJkjr2L.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706100216_15345996_QwtS9QZSoIY5.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706100216_15345996_QwtS9QZSoIY5.jpg" /></a><wbr /> <br><br><wbr /><a href="http://www.mflady.com/bbs/attachments/month_0707/20070706100231_2956606_jdjgNOHAR17H.jpg" target="_blank"><img style="border:0;" src="http://www.mflady.com/bbs/attachments/month_0707/20070706100231_2956606_jdjgNOHAR17H.jpg" /></a><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[社會]]></category>
<author><![CDATA[393701934@qq.com(正义)]]></author>
<comments>http://393701934.qzone.qq.com/blog/1232189771#comment</comments>
<qz:effect>134218267</qz:effect>
<pubDate>Sat, 17 Jan 2009 10:56:11 GMT</pubDate>
<guid>http://393701934.qzone.qq.com/blog/1232189771</guid>
</item>

<item>
<title><![CDATA[我的十年感言]]></title>
<link>http://393701934.qzone.qq.com/blog/1226474457</link>
<description><![CDATA[回忆1998年：QQ10不容易啊！<br>回忆1999年：中美两国政府代表在北京签署了关于中国加入世界贸易组织的双边协议。 <br><br>回忆2000年：第27届悉尼奥运会，中国金牌数位居第三，仅次于美国和俄罗斯。 <br><br>回忆2001年：中国北京获得2008年第29届奥运会主办权。 <br><br>回忆2002年：上海市获得2010年世界博览会举办权。 <br><br>回忆2003年：首次载人航天飞行获得圆满成功，抗击非典科研取得阶段性重大成果。 <br><br>回忆2004年：中国共产党正式提出了“建立和谐社会”的历史目标。 <br><br>回忆2005年：神舟六号载人航天飞行圆满成功。 <br><br>回忆2006年：中华人民共和国大陆农民告别有2600年历史的“皇粮国税”。 <br>2、三峡大坝建成并蓄水至156米。 <br><br>回忆2007年：中国对香港恢复行使主权十周年。 <br><br>回忆2008年：北京成功举办奥运会，中国51金首登金牌榜首。 <!--v:3.2--> ]]></description>
<category><![CDATA[腾讯十周年]]></category>
<author><![CDATA[393701934@qq.com(正义)]]></author>
<comments>http://393701934.qzone.qq.com/blog/1226474457#comment</comments>
<qz:effect>134217728</qz:effect>
<pubDate>Wed, 12 Nov 2008 07:20:57 GMT</pubDate>
<guid>http://393701934.qzone.qq.com/blog/1226474457</guid>
</item>

<item>
<title><![CDATA[[转]80后男生口述娶妻20条标准]]></title>
<link>http://393701934.qzone.qq.com/blog/1204081605</link>
<description><![CDATA[　　一，长相要说的过去。不要太漂亮，也不要太丑，一般即可。太漂亮的女人让人担心，太丑的女人看了不舒服。所谓一般，就是五官端正，看着顺眼。过度自恋的勿扰。　　  <br>　　二，必须是80后。我是88年的，大我几岁小我两岁都没关系，但必须要80后的。毕竟同一个时代的人更能说到一起。90后的不想死就别招惹我。　　  <br>　　三，个性要独立。你赚不赚钱都无所谓，但必须有独立生存的能力。不要什么事都指望我，我要找的是女朋友，不是女儿，也不是情人。 　　  <br>　　四，谈过3个以上男朋友的勿扰。不管你是因为什么原因和前3个男朋友分手，如果是连甩三人，那你就是水性扬花，如果是连被甩三次，那你真不是什么好人，可怜之人必有可恨之处。　　  <br>　　五，“非主流”的勿扰。我骨子里比较传统，你们的行为过于怪异，我看不下去。我们生活的不是一个星球，我对外星人是有敌意的。　  <br>　　六，必须洗衣服做饭。我肯定是要分担家务的，比如扫地擦地洗碗都可以，但我不想洗衣服做饭。　　　七，懂事。不要无理取闹，更不能在朋友面前不给我面子。面子对我很重要，你要撕了我面子我就真不要脸了。　　  <br>　　八，我没有处女情结，希望你也不要有处男情结。　　  <br>　　九，说话带英文的勿扰。英语很有用，但不要对我说。我不懂英文，尤其恶心说中文夹带英文的。我是中国人，请对我讲国语。　　  <br>　　十，耳洞不能超过2个。我不想看见你身上有太多窟窿，我要的是一个完整的人，不欣赏残缺的美，而且我也没那么多钱给你买两个以上的耳环。　 <br>　　十一，十八岁之前父母双全。目前来说，我不具备父爱，更不具备母爱。　　  <br>　　十二，化浓妆的勿扰。清新，干净，可以是淡妆，但黑白过于鲜明，抹的像个厉鬼或者火鸡或者性工作者的请自重。 <br>　　十三，暴牙勿扰。我不想让接吻成为噩梦。　　  <br>　　十四，会一门手艺。琴棋书画唱歌跳舞弹奏乐器以及手工活儿随便什么都行，可以给生活增加情趣。　　  <br>　　十五，走姿正确。要以正常的步伐走路，内八字，外八字以及凌波微步的都别找我。人要脚踏实地走正路，不能走歪路。　　  <br>　　十六，不能太有钱。我是个普通人，没享受过荣华富贵，也没见过那大场面，你吃的东西我都没见过，我吃的东西你咽不下去，太有钱的女人肯定跟我合不了拍子。　　  <br>　　十七，娇生惯养的死开。我不是王子，你也别当自己是公主，我伺候不起。泼辣一点，皮实一点，别整的跟个玻璃人似的。　　  <br>　　十八，有爱心。对弱者要有基本的同情心，可以尽量去帮助别人。冷漠的勿扰。　　  <br>　　十九，不能崇洋媚外。我可以带你出国旅游，但必须知道中国是最好的。我十分热爱自己的国家，如果你跟我说外国的一切都比中国好，我可能会对你实施家庭暴力。　　  <br>　　二十，一夜Q及**L患者勿扰。　　这是我的择偶标准以及我对标准的解释，是我的个人爱好和行为，不是说不符合这些条件的女生不好，只是不适合我。有意的请带照片写信给我，无意的请洗洗睡吧。  <!--v:3.2--> ]]></description>
<category><![CDATA[天下杂侃]]></category>
<author><![CDATA[393701934@qq.com(正义)]]></author>
<comments>http://393701934.qzone.qq.com/blog/1204081605#comment</comments>
<qz:effect>1032</qz:effect>
<pubDate>Wed, 27 Feb 2008 03:06:45 GMT</pubDate>
<guid>http://393701934.qzone.qq.com/blog/1204081605</guid>
</item>

<item>
<title><![CDATA[[转]厕所忘记带纸引发口水大战]]></title>
<link>http://393701934.qzone.qq.com/blog/1202897426</link>
<description><![CDATA[1楼、上厕所忘带纸，兜里只有女朋友的照片和100块钱，用哪张？ 谁来告诉我啊 <br>2楼、用手指！~再用水冲干净！~   <br>3楼、用一百的啊 你不觉得用照片很疼吗 照片太硬了   <br>4楼、用一百块的，用完洗洗干净花出去   <br>5楼、接楼上的 洗过后买的东西还是香的   <br>6楼、哈哈``还是把纸篓里人家用过的拿来用下算了`` （-__-这个答案真是巨耨。。）   <br>7楼、应该上完厕所后 直接提起裤子 走人。。。。。。。。。 （哥们真大气）   <br>8楼、哭阿~我正吃饭呢   <br>9楼、骗人................连鞋都没有？拿鞋刮呀 （靠，大哥，怎么刮阿-__-||)   <br>10楼、简单~~忍痛割爱~~用自己的内裤嘛`~   <br>11楼、你就用手扣吧~~记得洗手哦   <br>12楼、用袜子啊~~~~~~ （跟用鞋那个有异曲同工之妙。。。）   <br>13楼、你这个帖子该不是在厕所里发的吧……老实讲，你当时用的什么……   <br>14楼、印度是不用纸的   <br>15楼、把100撕成5等份``用一份``哈哈``还剩80元``很赚啊~~我是女的```男朋友的照片当然不能用!~~ （介女地真TM有经济头脑）   <br>16楼、两张都用，因为一张不够擦啊（-_-|||)   <br>17楼、叫救命!   <br>18楼、照片朝里,让你女朋友背着你,然后再刮,这样心里比较下去了 （牛。。）   <br>19楼、把照片撕成两张薄的嘛~!!拿没图案的那边擦嘛~~~!!! （更牛。。）   <br>20楼、真他** 找个吹风机吹下   <br>真不行 屁股一撅 风干咯   <br>这等问题 下次 就不要劳烦我了   <br>（真汗```````````````````` ）   <br>21楼、你不会打110吗   <br>22楼、笨！厕所肯定有水龙头吧，出去拿个水管，插在水龙头上，蹲着洗洗就行了。   <br>23楼、都是不忍心的两个东西...........绝~~   <br>那就把照片上的女朋友的头撕下来做纪念   <br>再去擦PP吧~~~~~100嘛......留着用~~~   <br>24楼、那你是怎么办的啊，我想啊。。。。。。   <br>应该把你的弟弟扳过来，用你自己尿冲干净嘛   <br>不错嘛，还是很为你着想的哦 （orz)   <br>25楼、你爬到女WC看看有没有   <br>26楼、上完大号以后,把PP撅起来,然后开始狂甩5分钟,利用离心力将残留在PP上的便便给甩干净,然后就可以个吧,就是费时又有点累~~~   <br>27楼、楼上的臀力真强   <br>28楼、厕所不都有墙吗.蹭在墙上啊.   <br>29楼、屏一口气   <br>把PP外面残留的喷出去   <br>实在不行吸进来 （去，你这练功呢？）   <br>30楼、等下 哈 我来帮你擦   <br>31楼、大方一点啦!多拉点！把厕所堵住！到时，别人要进来修，你就威胁道：不给纸！誓不出去！！！不就得了？   <br>32楼、把嘴里的口香糖拿来粘,粘干净了就好了,要是还有点甜味舍不得扔就继续嚼 （最恶得就是你了O_O)   <br>33楼、拿嘴吹，吹干了就可以把壳子抠下来了   <br>34楼、你练过瑜珈没，可以自己舔的呀，不过难度比较高哦   <br>35楼、万一拉稀怎么办啊 那100的也不够用啊   <br>36楼、摆在你面前的是两条路,是选择爱情还是留守爱情，是爱情的伟大还是金钱的诱惑更大？这是个问题，是个抉择，当你终于找到了生命的支撑时，拿起钞票视之为粪土时，猛然发现，风干了。——守护住爱情，看似牺牲失去很多，其实我们得到了更多。   <!--v:3.2--> ]]></description>
<category><![CDATA[天下杂侃]]></category>
<author><![CDATA[393701934@qq.com(正义)]]></author>
<comments>http://393701934.qzone.qq.com/blog/1202897426#comment</comments>
<qz:effect>1032</qz:effect>
<pubDate>Wed, 13 Feb 2008 10:10:26 GMT</pubDate>
<guid>http://393701934.qzone.qq.com/blog/1202897426</guid>
</item>

<item>
<title><![CDATA[[转]轰动大学的一封进口情书]]></title>
<link>http://393701934.qzone.qq.com/blog/1202520653</link>
<description><![CDATA[　　哥们喜欢上X mm后，决定要给她写一封情书，为使这封情书一定要不落俗套。哥们苦思之下无灵感，许诺啤酒两支小菜若干要全宿舍帮助完成千古情书,群情之下要小可主刀.现在卖饼干说是卖克力架，做网站的想办法上纳斯达克，那我也走国际路线，写封英文情书，扯着虎皮拉大旗，给个机会显示一下自己的才华吧。  <br>　　Dear wang litte girl: 亲爱的王小姐  <br>　　(翻译这句，我可费了不少心思，中文直接用”亲爱的”未免显得肉中有肉，麻中有麻，还是老外开放，一般朋友也可以用dear，这样自己的贼心可以得到满足而又不唐突。姐想译成sister吧，怕她理解成小妹，一开始就叫人小妹，我好意思开口，人家还不一定好意思应呢，把小姐译成littlegirl吧，又怕她理解成小丫头，这样”wang littlegirl”变成了王小丫，上天作证，我可没有喜欢这个漂亮的主持人，其实主要知道喜欢了也白搭，就象明知是垃圾股又何必再投资进去呢？最后采用考试时常用的方法-----丢硬币决定还是译成litte girl。)  <br>　　From see you one eye, I **** love you.  <br>　　(本想写”自从见你第一眼，我便对你魂牵梦绕”，可魂牵梦绕我实在译不出，只好写成”我便爱上你”，”便”译成shit是邻居小孩告 诉我的，他说VCD里老有人说：”shit”，这个shit就是”便”。)  <br>　　your eyes close,I die;your eyes open ,I come back olive.Your　eyes close and open again and again ,I die again and　again.  <br>　　你的眼睛闭上，我就死了，你的眼睛睁开，我又活过来了，你眼睛眨呀眨，我就死去活来。(多抒情多浪漫啊,我都陶醉了)  <br>　　Maybe you do not know me ,no　matter.one see clock emotion is pop.  <br>　　“也许你还不认识我，没有关系，一见钟情很流行。” (嘿嘿,,感动ING) <br>　　(译一见钟情颇费了一番功夫，一、见、情都会，但钟字怎么译呢，一抬头，见闹钟上写着呢：clock，pop这个词是从电视中学来的，最流行的音乐唱片就是top of thepops，呵呵，处处留心皆学问呀。老四在一旁羡慕得...) <br>　　I think I should introduce myself to you.  <br>　　我想应该介绍一下自己。  <br>　　I call Li old big. toyear 25. 我叫李老大，今年25. (今天是today，那么今年是toyear，没有错的吧?错了下次改) <br>　　My home four mouth peopleapa,mama,I and　DD.  <br>　　我家有四口人：爸爸、妈妈、我和弟弟。  <br>　　(还好，幸亏在网上混了这么多年，知道GG，JJ，MM，DD怎么写的。经解释全宿舍高呼&quot;万岁&quot;)  <br>　　I beat letter very fast,because I am a computer high hand.I even act as black guest.  <br>　　我打字很快，因为我是电脑高手，我甚至还当过黑客呢(曾经因为MM不理我我偷偷地拔过她电源线。告诉她被我黑了把MM崇拜得不行)  <br>　　I do early **** every day,so that I can have strong body to protect you.  <br>　　我每天都做早**，这样我会有强壮的身体来保护你。  <br>　　Please come to eat and sleep with me, or I will cut my hair to be a monk , and find a place where many monks live in to over mylife.  <br>　　请嫁给我吧，否则我将削发为僧，找个庙来了此一生。 <br>　　(实在想不起嫁字怎么译了，好在我脑袋灵光，嫁过来不就是和我吃住在一起吗？祸不单行，庙字我又忘记怎么译了，不过这也难不倒我，好多和尚住的地方不就是庙吗？为自己的聪明鼓掌！至于了此一生，打游戏时最后不是gameover吧，over当然就是结束啦。)  <br>　　your old big  <br>　　你的老大  <br>　　(为了表示亲切，署名时我省去了姓，不过你的老大听起来有点象黑社会的感觉，算了，不管它啦。)  <br>　　好了，我们的第一封英文情书就这样隆重诞生了，看见了吧，知识就是力量，这肯定是一发攻克MM心城的重型炮弹，为我们老大的好运祝福吧！  <br>　　哦，为写这封情书熬了一个通宵，天都亮了，该do early ****(做早**)去了.反正今晚有啤酒喝..... <br>　　PS:上次写的居然在此一再热炒,感动ING... <!--v:3.2--> ]]></description>
<category><![CDATA[天下杂侃]]></category>
<author><![CDATA[393701934@qq.com(正义)]]></author>
<comments>http://393701934.qzone.qq.com/blog/1202520653#comment</comments>
<qz:effect>1032</qz:effect>
<pubDate>Sat, 09 Feb 2008 01:30:53 GMT</pubDate>
<guid>http://393701934.qzone.qq.com/blog/1202520653</guid>
</item>

</channel>
</rss>

