<?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[fadeless]]></title>
<description><![CDATA[何月照明城]]></description>
<link>http://190155677.qzone.qq.com</link>
<lastBuildDate>Sun, 29 Nov 2009 20:22:24 GMT</lastBuildDate>
<generator>Qzone</generator>
<language>zh-cn</language>
<copyright>Copyright (C), 2005-2008, Tencent Tech. Co., Ltd.</copyright>
<pubDate>Sat, 14 Nov 2009 10:36:11 GMT</pubDate>

<item>
<title><![CDATA[服务器连接池设置步骤]]></title>
<link>http://190155677.qzone.qq.com/blog/1258194971</link>
<description><![CDATA[<span style="font-size:13px;line-height:1.8em;">1.准备.</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">将sqljdbc.jar(或任意数据库连接jar包)copy to tomcat安装目录5.x的common/lib文件夹(6.x以上版本直接在根目录可以找到lib</span><wbr /><br><br><span style="font-size:13px;line-height:1.8em;">文件夹).</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">2.配置tomcat安装目录下的conf/context.xml文件.</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;Context&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;Resource </span><wbr /><br><span style="font-size:13px;line-height:1.8em;">name=&quot;jdbc/ProjectName&quot; </span><wbr /><br><span style="font-size:13px;line-height:1.8em;">auth=&quot;Container&quot; type=&quot;javax.sql.dataSource&quot; </span><wbr /><br><span style="font-size:13px;line-height:1.8em;">maxActive=&quot;100&quot; maxIdle=&quot;30&quot;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">maxWait=&quot;10000&quot; username=&quot;sa&quot; password=&quot;sa&quot; </span><wbr /><br><span style="font-size:13px;line-height:1.8em;">driverClassName=&quot;com.microsoft.jdbc.sqlserver.SQLServerDriver&quot;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">url=&quot;jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=restrant&quot;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">/&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;/Context&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;"></span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;!-- </span><wbr /><br><span style="font-size:13px;line-height:1.8em;">maxActive:最大活动根数</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">maxIdle:最大闲置根数</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">maxWait:最长等待时间(毫秒)</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">其余的字段根据相应数据库相应设置</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">--&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">3.在java Project 将sqljdbc.jar包copy to WebRoot/WEB-INF/lib中.并设置该目录下的web.xml文件.</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;web-app&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;resource-ref&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;description&gt;ProjectName DataSource&lt;/description&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;res-ref-name&gt;jdbc/ProjectName&lt;/res-ref-name&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;res-type&gt;javax.sql.DataSource&lt;/res-type&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;res-auth&gt;Container&lt;/res-auth&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;/resource-ref&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;/web-app&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">&lt;!--</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">1)其中&lt;res-ref-name&gt; &lt;res-type&gt; &lt;res-auth&gt;的值要跟tomcat的context.xml相应字段一致.</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">2)此&lt;resource-ref&gt;标签仅作项目声明使用数据源,tomcat(第2步)配置完备的情况下可以省略.</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">--&gt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">4.数据源的使用.</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;">import javax.naming.Context;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">import javax.naming.InitialContext;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">import javax.naming.NamingException;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">import javax.sql.DataSource;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">public class TitlesBean{</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">    private Connection con;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">    private PreparrdStatment pstmt;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">    private ResultSet rs;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">//返回已经写好得NewsTitlesBean(新闻标题相关字段)列表</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">public List&lt;NewsTitlesBean&gt; getTitles{</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">List&lt;NewsTitlesBean&gt; list =new ArrayList();</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">//获取列表</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">try{</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">//找到容器</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">Context ic=new InitialContext();</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">//找到到数据源,;comp/env/为前缀名</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">DataSource source=(DataSource)ic.lookup(&quot;java;comp/env/jdbc/ProjectName&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;">con=source.getConnection();</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">pstmt=con.prepareStatement(&quot;select * from titles&quot;);</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">while(rs.next()){</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">NewsTitlesBean nt=new NewsTitlesBean();</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">//entity NewsTitlesBean类set/get过程省略</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">list.add(nt);</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;">catch(SQLException e){</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">e.printStackTrace();</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">}//处理jndi异常</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">catch(NamingException ne){</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">ne.printStackTrace();</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">}</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">//释放资源(必要,同maxActive的设置关联)</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">finally{</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;">return list;</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">}</span><wbr /><br><span style="font-size:13px;line-height:1.8em;">p.s.如果有什么不对还请指教</span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[190155677@qq.com(fadeless)]]></author>
<comments>http://190155677.qzone.qq.com/blog/1258194971#comment</comments>
<qz:effect>134217728</qz:effect>
<pubDate>Sat, 14 Nov 2009 10:36:11 GMT</pubDate>
<guid>http://190155677.qzone.qq.com/blog/1258194971</guid>
</item>

<item>
<title><![CDATA[listen]]></title>
<link>http://190155677.qzone.qq.com/blog/1256453092</link>
<description><![CDATA[<br><wbr /><a href="http://photo2.bababian.com/upload3/20091025/FD2C3111DC63AFDF9F4495FF1709C2E9.jpg" target="_blank"><img style="width:800px;height:500px;border:0;" src="http://photo2.bababian.com/upload3/20091025/FD2C3111DC63AFDF9F4495FF1709C2E9.jpg" /></a><wbr /><br><span style="font-size:13px;line-height:1.8em;">那年，你记得我是谁开始<br>来年，你记得我是谁结束<br>时间仓促抚平太多的干戈愚鲁<br>起起伏伏<br>还好，能容我一人带走两个人的泣诉<br>如今我笑忘沉幕</span><wbr /><br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[190155677@qq.com(fadeless)]]></author>
<comments>http://190155677.qzone.qq.com/blog/1256453092#comment</comments>
<qz:effect>134218241</qz:effect>
<pubDate>Sun, 25 Oct 2009 06:44:52 GMT</pubDate>
<guid>http://190155677.qzone.qq.com/blog/1256453092</guid>
</item>

<item>
<title><![CDATA[最近]]></title>
<link>http://190155677.qzone.qq.com/blog/1255511784</link>
<description><![CDATA[<wbr /><a href="http://photo2.bababian.com/upload3/20091014/8F4B6187EBFB65B7655DB4E0718637B4.jpg" target="_blank"><img style="width:500px;height:1500px;border:0;" src="http://photo2.bababian.com/upload3/20091014/8F4B6187EBFB65B7655DB4E0718637B4.jpg" /></a><wbr /><br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[190155677@qq.com(fadeless)]]></author>
<comments>http://190155677.qzone.qq.com/blog/1255511784#comment</comments>
<qz:effect>134218241</qz:effect>
<pubDate>Wed, 14 Oct 2009 09:16:24 GMT</pubDate>
<guid>http://190155677.qzone.qq.com/blog/1255511784</guid>
</item>

<item>
<title><![CDATA[拒绝陈奕迅]]></title>
<link>http://190155677.qzone.qq.com/blog/1252505138</link>
<description><![CDATA[如果你感情经历丰富，别听陈奕迅。 <br>如果你被甩，甩你的人躲着让你怎么也找不着，别听《十面埋伏》。 <br>如果跟你相恋的人其实爱的不是你，别听《人来人往》。 <br>如果由朋友变暧昧最后还是崩了，别听《最佳损友》。 <br>如果你幻想你爱的那个人还能记得你，别听《防不胜防》。 <br>如果你爱的人被你的过去吓跑了，别听《大开眼戒》。 <br>如果有人非要爱你而你是GAY，别听《富士山下》。 <br>如果你刚跟你最爱的你认为几乎要托付终身的人分手，别听《天下无双》。 <br>如果你总是想靠出位来吸引你爱的人而人偏偏不鸟你，别听《浮夸》。 <br>如果你出位到极致使出一切招数你爱的人依然不鸟你，别听《K歌之王》。 <br>如果你很穷，别听《New Order/ Last Order》。 <br>如果你在每逢佳节倍思亲的时候被人甩，别听《Lonely Christmas》。 <br>如果你自卑又要面子，别听《我不好爱》。 <br>如果你有家庭危机七年之痒之类，别听《Shall We Talk》。<br>如果你看破了红尘，别听《夕阳无限好》。 <br>如果你爱的人对你只有性趣，别听《低等动物》。 <br>如果你被甩感觉如同五雷轰顶还幻想对方给个原因，别听《明年今日》。 <br>如果你爱的人要结婚了但不是跟你，而且你又刚好属牛的话，千万别听《阿牛》。 <br>如果事到如今你仍然对山盟海誓抱有幻想，别听《幸福摩天轮》。<br>如果你好朋友纷纷结束了单身惟独你仍然没人要，别听《最后今晚》。 <br>如果你跟人暧昧了N年人家仍然不爱你，别听《绵绵》。 <br>如果你看着你的EX如今一个个幸福无比感觉心境凄凉，别听《落花流水》。 <br>如果你伤害了你曾爱到为之劈腿的人，别听《月球上的人》。 <br>如果你总是感叹错误的时间遇上对的人，别听《1874》。 <br>如果你爱的人甩了你理由是没新鲜感了，别听《还有什么可以送给你》。 <br>如果你爱的人跟有钱人跑了，别听《Aren't You Glad》。 <br>如果爱人跟你分手还告诉你我们还是朋友，别听《与我常在》。 <br>如果你受过伤开始怀疑爱情,别听《葡萄成熟时》<br>如果你想你的失恋情人！别听..《好久不见》<br>总之，如果你想太多，别听他的歌。<br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[190155677@qq.com(fadeless)]]></author>
<comments>http://190155677.qzone.qq.com/blog/1252505138#comment</comments>
<qz:effect>134217728</qz:effect>
<pubDate>Wed, 09 Sep 2009 14:05:38 GMT</pubDate>
<guid>http://190155677.qzone.qq.com/blog/1252505138</guid>
</item>

<item>
<title><![CDATA[一首小诗]]></title>
<link>http://190155677.qzone.qq.com/blog/1252264783</link>
<description><![CDATA[但愿在未来的日子里<br>让抛弃了我的人们始终坚信<br>他们的抉择是正确的<br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[190155677@qq.com(fadeless)]]></author>
<comments>http://190155677.qzone.qq.com/blog/1252264783#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Sun, 06 Sep 2009 19:19:43 GMT</pubDate>
<guid>http://190155677.qzone.qq.com/blog/1252264783</guid>
</item>

<item>
<title><![CDATA[被点名了]]></title>
<link>http://190155677.qzone.qq.com/blog/1251286803</link>
<description><![CDATA[<span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q1:你的大名？ </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">樊尚</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q2:你认为什么才算是真正幸福？ </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">忙碌一天睡个好觉</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q3:你觉得友情重要还是爱情重要，为什么? </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">友情</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q4:你相信天长地久吗？ </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">信</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q5:你现在过得快乐么？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />一直快乐</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q6:如果有秘密.你真的会做到坦白的告诉对方吗? </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />会</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q7:喜欢呆家的感觉么? </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">喜欢</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q8:觉得友情是永远的么? </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />是</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q9:希望自己多大结婚？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />30</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q10:你会为他做自己从来不会做的事情? </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />会</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q11:你觉得女生卷发好还是直发好？ </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">直发</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q12:最想去哪里旅游? </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />人少的地方</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q13:一辈子都不会忘记的事? </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">家人去世 </span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q14:如果爱一个人,是不是要拼命挽回TA? </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />不至于拼命</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q15:看到天空你想起的第一个人是谁?</span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />扬利伟</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q16:你会爱TA一辈子么？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />绝对信任的情况下会</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q17:喜欢你的人和你喜欢的人，你会选哪个？ </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">喜欢我的</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q18:你会以何种方式表现你对他（她）的爱？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />任何方式</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q19:如果看到自己最爱的人熟睡在你面前你会做什么 </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />轻声说话</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q20:如果你想痛扁一个人,你希望那个人是谁? </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">我这人鄙视暴力</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q21:你会后悔过自己的决定吗？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr /> never</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q22:现在最迷什么: </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />书</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q23:你是好孩子吗？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />是</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q24:觉得爱情和面包哪个重要？ </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">面包</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q25:如果你失恋了你会怎么样? </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />运动</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q26:如果你的BF（GF）经常不回家的话，你会怎样？   </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />暂时没想过</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q27:心煩的時候要怎麽辦哦？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />听音乐</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q28:你是个记仇的人吗？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />是</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q29:最爱的那个~离你有多远哈？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />再远不就是个地球大小么</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q30:可以做到永不背弃爱吗？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr /> 可以</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q31:你在乎别人的眼光BO? </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />不在乎</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q31:经常感到孤独无助的时候吗? </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">不会，我有亲人</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q32:当你爱的人爱上了别人.你会怎样? </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />离开</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q33:拥抱和KISS喜欢哪个0 0? </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />都喜欢</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q34:在你快死的那一刻你会做什么? </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />写字</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q35:想给以后的孩子取什么名字？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />长大后自己更改</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q36:站在高处会想跳下吗？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />我恐高</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q37:对婚前*行为有什么看法? </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />至少我很保守</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q38:自我评价一下子自己 </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;">闷骚</span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q39:以后生小孩希望是男孩还是女孩？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;"><span style="font-weight:bold"><wbr />男孩</span><wbr /></span><wbr /> </span><wbr /><span style="color:#6699ff;line-height:1.8em;"></span><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr /><span style="line-height:1.8em;">41:觉得会有人比你的GF/BF更爱你吗？ </span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />不会</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q42：你遇到喜欢的人会怎么样？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />表白</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q43：你对现在的生活满意吗？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />满意</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">Q44：当一天你老去，回头看你的人生路，你最希望能感受什么？</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"> 最好别是老无所依</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q45：相信命中注定吗？ </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">相信</span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q46：最喜欢的工作？   </span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">自由撰稿人</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;"><span style="line-height:1.8em;">Q47：TA对你说过的，最让你感动的一句情话？ </span><wbr /></span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="font-weight:bold"><wbr />注意安全</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">Q48：分手了，你很想他的时候会打电话给他吗？</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#6699ff;line-height:1.8em;">不会</span><wbr /></span><wbr /><br><span style="color:#6699ff;line-height:1.8em;"><span style="color:#ff9900;line-height:1.8em;"><span style="line-height:1.8em;">  </span><wbr /><span style="font-weight:bold"><wbr /><span style="line-height:1.8em;">—————————————幸福的分割线——————————————————</span><wbr /> </span><wbr /></span><wbr /><br><span style="color:#66ccff;line-height:1.8em;"><span style="font-weight:bold"><wbr />是谁传给你这份问卷的：叶茶</span><wbr /></span><wbr /><br><span style="color:#66ccff;line-height:1.8em;"><span style="font-weight:bold"><wbr />你们认识多久呢:一个学期</span><wbr /></span><wbr /><br><span style="color:#66ccff;line-height:1.8em;"><span style="font-weight:bold"><wbr />Ta是怎样的人：大姐型小妹</span><wbr /></span><wbr /><br><span style="color:#66ccff;line-height:1.8em;"><span style="font-weight:bold"><wbr />你与TA的关系是: 不错</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#66ccff;line-height:1.8em;">TA的强项是： 不晓得</span><wbr /></span><wbr /><br><span style="color:#66ccff;line-height:1.8em;"><span style="font-weight:bold"><wbr />你觉得TA的个性如何: 开朗</span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr /><span style="color:#ff9900;line-height:1.8em;">—————————————幸福的分割线——————————————————</span><wbr /></span><wbr /><br> <span style="font-weight:bold"><wbr /><span style="color:#ff0033;line-height:1.8em;"><span style="font-weight:bold"><wbr />亲爱滴们我可要点名啦：</span><wbr /></span><wbr /></span><wbr /></span><wbr /><br><span style="font-weight:bold"><wbr />心之风景  折翼天使 阿一 阿四 就这些吧~<br></span><wbr /></span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[190155677@qq.com(fadeless)]]></author>
<comments>http://190155677.qzone.qq.com/blog/1251286803#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Wed, 26 Aug 2009 11:40:03 GMT</pubDate>
<guid>http://190155677.qzone.qq.com/blog/1251286803</guid>
</item>

<item>
<title><![CDATA[依然第一名！]]></title>
<link>http://190155677.qzone.qq.com/blog/1250678054</link>
<description><![CDATA[<span style="font-size:13px;line-height:1.8em;">两个礼拜的JavaScript-Html网页制作大赛，和去年一样，依然第一名！没有你在我依然是最优秀的！</span><wbr /><br><wbr /><a href="http://b23.photo.store.qq.com/http_imgload.cgi?/rurl4_b=bdd5d6eacd03e6ed9c1f5412a0ddec352d602599b9b665f9d4737521b668eae4a2d7d421a3f10ae2b60ec1d21ddf73afcfa36c5f3aa2c38baf80b5897df54c34023b92bac17bd9d6871f3e287ca51e33f00ab49d" target="_blank"><img style="width:670px;height:521px;border:0;" src="http://b23.photo.store.qq.com/http_imgload.cgi?/rurl4_b=bdd5d6eacd03e6ed9c1f5412a0ddec352d602599b9b665f9d4737521b668eae4a2d7d421a3f10ae2b60ec1d21ddf73afcfa36c5f3aa2c38baf80b5897df54c34023b92bac17bd9d6871f3e287ca51e33f00ab49d" /></a><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[190155677@qq.com(fadeless)]]></author>
<comments>http://190155677.qzone.qq.com/blog/1250678054#comment</comments>
<qz:effect>134218241</qz:effect>
<pubDate>Wed, 19 Aug 2009 10:34:14 GMT</pubDate>
<guid>http://190155677.qzone.qq.com/blog/1250678054</guid>
</item>

<item>
<title><![CDATA[[转]我是旧社会的小青年]]></title>
<link>http://190155677.qzone.qq.com/blog/1250532472</link>
<description><![CDATA[所谓新社会的人 新社会的男人 <br>要会砍人 长的要帅 篮球打的要好足球踢的要好 辛XX泰XXX以及各位XXXXXXX有名的无名的写诗的写词的作品张口既来 能喝酒喝多少都不醉 喝完了还能打架 能抽烟 抽烟要抽出来颓废的感觉 穿fxxxxxxx(要理解为fuck我也没意见)衣服 到处乱交女朋友 最大的愿望是认识所有美女<br> <br>算来算去 我不会砍人 下不去手...长的也不够帅 篮球打的很烂足球在10岁前踢的还行10岁后忘了这茬了 至于什么诗什么词别人的不会背自己的写了扭头就扔了 能喝酒 喝多少都不醉 完事就想睡 打架就别提了 能抽烟 再烂的烟也能叼着 穷到自己卷烟抽....颓废没抽出来贫困抽出来了 穿Axxxx的衣服还是Axxx+Nxxx的 沉迷于一个小女孩不能自拔 最大的愿望是在网吧上网的时候有人能给送点吃的<br> <br>原来我是老古董啊…… <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[190155677@qq.com(fadeless)]]></author>
<comments>http://190155677.qzone.qq.com/blog/1250532472#comment</comments>
<qz:effect>1032</qz:effect>
<pubDate>Mon, 17 Aug 2009 18:07:52 GMT</pubDate>
<guid>http://190155677.qzone.qq.com/blog/1250532472</guid>
</item>

<item>
<title><![CDATA[[转]我所期待的爱情]]></title>
<link>http://190155677.qzone.qq.com/blog/1250532364</link>
<description><![CDATA[是在这种天气 她打电话过来问我在干什么<br>我回答她说在看电影 闪灵 很可怕<br>她说你陪我出去逛街吧<br>我说你先来吧等我把电影看完<br>过来后又嫌电影太罗嗦 于是躺在我的床上睡觉 头发很好闻 一直睡到我把电影看完还没起来<br>睡醒的时候已经快9点了 做点东西给我吃 自己在旁边看着 然后出去散步 让我送她回家 在楼下抱抱 回到家发短信来让我睡觉不要上网了<br>就这么多了 <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[190155677@qq.com(fadeless)]]></author>
<comments>http://190155677.qzone.qq.com/blog/1250532364#comment</comments>
<qz:effect>1032</qz:effect>
<pubDate>Mon, 17 Aug 2009 18:06:04 GMT</pubDate>
<guid>http://190155677.qzone.qq.com/blog/1250532364</guid>
</item>

<item>
<title><![CDATA[[转]我爱你，假如……]]></title>
<link>http://190155677.qzone.qq.com/blog/1250529479</link>
<description><![CDATA[我爱你，假如我想见到你，你不要化妆，不要穿那些所谓漂亮的衣服，我不希望你带着面具在别人面前伪装过了来到我面前的时候依然疲惫，我爱你，爱你的每一寸肌肤，爱你的声音爱你粉红色的嘴唇，我爱的是你而不是化装品，我不要那些所谓的“对男人的尊重”，我希望你是自由的。<br> <br>我爱你，假如你要我给你打电话，我会在每天早晨七点半的时候打给你，不用问我昨天加班加到几点爬格子爬到几点，我是你的闹钟，我喜欢听你早晨庸懒的对我说：“嗯。知道了。嗯。起床了。嗯。我知道了你别这么罗嗦跟八婆一样。”<br> <br>我爱你，假如我们在散步遇到了你的异性朋友，我会礼貌的让出来你们谈话的地方，自己走到一边偷偷的抽棵烟，假如你向他介绍我我会冲他笑笑，问他的工作然后说：“我要抽完这支烟你们先谈。”<br> <br>我爱你，假如你想见我我会早早的买上车票不是坐票也没关系，我就当做站过了几千公里跑到你的城市，拥抱你亲吻你的额头和鼻尖，我不够优秀所以不会站在你们宿舍楼下大声的喊你名字，我不够富有没有漂亮的车停在你们学校门口等你下学。可是我会在空旷的广场大声的喊我爱你，我也会在雨天淋湿半个身子怕你上学忘记带雨伞。<br> <br>我爱你，假如我们在冬天出门你会冷我就会穿很大的上衣，把你裹在里面象个小孩，我不会再吻你的鼻子不然它忽冷忽热的你就会感冒，假如你会害羞我们就走到一棵树下等出租车，带你去朋友的奶茶店喝热橙汁。<br> <br>我爱你，假如你认为不够了解我我会请我所有能到的朋友一起吃饭，在饭桌上大声宣布你是我女朋友我和你明年会结婚你们一定要来，我会请她做她会做的菜让你们吃。<br> <br>我爱你，假如你来的时候我正在抽烟我会摁灭它，原谅我亲爱的有些场合让我注定戒不了我讨厌的烟和我不喜欢喝的酒，我能做的只有你在的时候珍惜自己的身体，也许很多年后我们不再去面对那些不得以的事情时我会毫不犹豫的戒掉它们。就象我每次喝完酒就想昏昏沉沉的睡过去，假如我给不了你的期望那我能做的只能是让这些坏毛病不影响到你。<br> <br>我爱你，假如我对你说谎请原谅我，请记得我任何时候都是爱你的我会付出自己的生命来保护你所以请你记得我的谎言也许只是为了隐瞒我的担心，你的担心你的忧郁你的害怕我都想和你分担，可我却从来不想让你看到我的脆弱。<br> <br>我爱你，假如得不到你的回应，我会一直等下去，等到我无以付出的时候就会变成一棵树站在原地，如果注定要结婚而又不是你，我会对她讲你的故事，请她尊重我对你的思念，也请她相信我会忘记你，为了你也为了我自己。<br> <br>我爱你，假如你对我说滚我对一点好感都没有我会站在角落默默的注视你，我会留下所有我们之间的东西不会烧掉也不会丢在一旁忘却，因为我还爱着你，而如果有一天……我不会说对不起我也不会欢喜，假如真的有一天我不再爱你，那请你记住我，记住我曾一路不回头的任满身伤疤的追寻在你的身后，记住我，无论是恨我厌恶我或者其他什么什么，记住我，用来交换我过去如此谦卑的爱着你。 <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[190155677@qq.com(fadeless)]]></author>
<comments>http://190155677.qzone.qq.com/blog/1250529479#comment</comments>
<qz:effect>1032</qz:effect>
<pubDate>Mon, 17 Aug 2009 17:17:59 GMT</pubDate>
<guid>http://190155677.qzone.qq.com/blog/1250529479</guid>
</item>

</channel>
</rss>

