﻿<?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-花痴无极限，凉粉Forever</title><link>http://www.blogjava.net/dearwolf/</link><description /><language>zh-cn</language><lastBuildDate>Wed, 29 Apr 2026 10:03:20 GMT</lastBuildDate><pubDate>Wed, 29 Apr 2026 10:03:20 GMT</pubDate><ttl>60</ttl><item><title>搬家公告</title><link>http://www.blogjava.net/dearwolf/archive/2007/01/08/92308.html</link><dc:creator> 小小凉粉</dc:creator><author> 小小凉粉</author><pubDate>Mon, 08 Jan 2007 02:07:00 GMT</pubDate><guid>http://www.blogjava.net/dearwolf/archive/2007/01/08/92308.html</guid><wfw:comment>http://www.blogjava.net/dearwolf/comments/92308.html</wfw:comment><comments>http://www.blogjava.net/dearwolf/archive/2007/01/08/92308.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.blogjava.net/dearwolf/comments/commentRss/92308.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/dearwolf/services/trackbacks/92308.html</trackback:ping><description><![CDATA[再也无法忍受无法在Firefox下面写blog的痛苦，再加上这里缓慢的网速~~~于是决定~~搬家<br /><br />新家地址：dearwolf.javaeye.com<img src ="http://www.blogjava.net/dearwolf/aggbug/92308.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/dearwolf/" target="_blank"> 小小凉粉</a> 2007-01-08 10:07 <a href="http://www.blogjava.net/dearwolf/archive/2007/01/08/92308.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>使SWT的Table根据TableItem显示Tooltip</title><link>http://www.blogjava.net/dearwolf/archive/2006/12/11/86985.html</link><dc:creator> 小小凉粉</dc:creator><author> 小小凉粉</author><pubDate>Mon, 11 Dec 2006 11:13:00 GMT</pubDate><guid>http://www.blogjava.net/dearwolf/archive/2006/12/11/86985.html</guid><wfw:comment>http://www.blogjava.net/dearwolf/comments/86985.html</wfw:comment><comments>http://www.blogjava.net/dearwolf/archive/2006/12/11/86985.html#Feedback</comments><slash:comments>4</slash:comments><wfw:commentRss>http://www.blogjava.net/dearwolf/comments/commentRss/86985.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/dearwolf/services/trackbacks/86985.html</trackback:ping><description><![CDATA[默认情况下,SWT的Table只会给整个Table设置Tooltip,要对每一个TableItem设置Tooltip的话,就要监听鼠标事件了:<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, 0, 0);"><br />        table.addMouseTrackListener(</span><span style="color: rgb(0, 0, 255);">new</span><span style="color: rgb(0, 0, 0);"> MouseTrackAdapter() {<br />            </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);">void</span><span style="color: rgb(0, 0, 0);"> mouseHover(MouseEvent event) {<br />                Point pt </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);"> Point(event.x, event.y);<br />                </span><span style="color: rgb(0, 0, 255);">int</span><span style="color: rgb(0, 0, 0);"> index </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> table.getTopIndex();<br />                </span><span style="color: rgb(0, 0, 255);">while</span><span style="color: rgb(0, 0, 0);"> (index </span><span style="color: rgb(0, 0, 0);">&lt;</span><span style="color: rgb(0, 0, 0);"> table.getItemCount()) {<br />                    TableItem item </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> table.getItem(index);<br />                    </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);"> table.getColumnCount(); i</span><span style="color: rgb(0, 0, 0);">++</span><span style="color: rgb(0, 0, 0);">) {<br />                        Rectangle rect </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> item.getBounds(i);<br />                        </span><span style="color: rgb(0, 0, 255);">if</span><span style="color: rgb(0, 0, 0);"> (rect.contains(pt)) {<br />                            Object object</span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> item.getData();<br />                            ........<br />                        }<br />                    }<br />                    index</span><span style="color: rgb(0, 0, 0);">++</span><span style="color: rgb(0, 0, 0);">;<br />                }<br />            }<br />        });</span></div><br />在省略号的地方就可以对对象进行转型了<br /><img src ="http://www.blogjava.net/dearwolf/aggbug/86985.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/dearwolf/" target="_blank"> 小小凉粉</a> 2006-12-11 19:13 <a href="http://www.blogjava.net/dearwolf/archive/2006/12/11/86985.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>[转贴]2006十大找抽事件</title><link>http://www.blogjava.net/dearwolf/archive/2006/12/06/85927.html</link><dc:creator> 小小凉粉</dc:creator><author> 小小凉粉</author><pubDate>Wed, 06 Dec 2006 12:31:00 GMT</pubDate><guid>http://www.blogjava.net/dearwolf/archive/2006/12/06/85927.html</guid><wfw:comment>http://www.blogjava.net/dearwolf/comments/85927.html</wfw:comment><comments>http://www.blogjava.net/dearwolf/archive/2006/12/06/85927.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/dearwolf/comments/commentRss/85927.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/dearwolf/services/trackbacks/85927.html</trackback:ping><description><![CDATA[
		<span id="span_Body">
				<p>1、有人竟敢叫嚣要“屠龙”</p>
				<p>上海某高校吴友富同志说：因为“龙”的英文“Dragon”，在西方世界被认为是一种充满霸气和攻击性的庞然大物。“龙”的形象往往让对中国历史和文化了解甚少的外国人由此片面而武断地产生一些不符合实际的联想，故提出龙可能不再适合代表中国。</p>
				<p>解读：<font color="#ff0000"><strong>中
国，一个有着上下几千年文化历史的国家，一个有着13亿人口的大国，一个曾经以小米加步枪硬是赶跑了持着洋枪洋炮的侵略者的民族，一个英雄辈出的国家，为
什么连我们世代所敬仰的代表我中华儿女的标志也要问问外国人是否合适？如果哪天他们说我们的国旗、国歌他们不喜欢，我们也要更改吗？</strong></font></p>
				<p>
						<font color="#ff0000">
								<strong>所以我说了，以后爸爸也该叫爹地了。今后大伙儿也别过春节了，一起过圣诞去；除夕也不要了，改在12月24日，叫平安夜。为啥？老外不喜欢！<br /></strong>
						</font>
						<br />2、李银河：换妻是公民合法权利</p>
				<p>丧夫性学家李银河：“换妻是公民合法权利。一切东西都应该要丰富多彩。如果家庭都只是一夫一妻这个模式，反而显得过于单调” <br />　　<br />解读：这话跟前些年“自愿的奴役是一种自由”这样一个伪命题一样不需要废话。自愿为奴隶当然是一种自由，但是它违背了自由这样一个大前提。换妻当然也是一种合法权利，但是它违背了一夫一妻制和《婚姻法》这个大前提。 <br /><br /><font color="#ff0000"><font color="#000000">解读：</font><strong>不过不知道李银河愿不愿自己试一把。没丈夫跟人换可以玩3P嘛</strong></font></p>
				<p>
						<font color="#ff0000">
								<strong>
								</strong>
						</font>
						<br />3、自称白居易后人的国学辣妹白鹿鸣 </p>
				<p>“我最擅长勾引人，孔子也不例外。我的一夜情值10万，不过孔子说食色性也，我去慰他籍千年的寂寞，他也一定是很高兴的。” </p>
				<p>
						<font color="#ff0000">
								<font color="#000000">解读：</font>
								<strong>不知道白居易知道有这样的后人会不会气的从棺材里爬出来。想出名，不是坏事。但是甩个大脸沾着祖宗的光还说勾引谁谁谁这样的话就有点让人倒胃口了。 </strong>
						</font>
				</p>
				<p>4、饶颖性爱日记</p>
				<p>饶大妈数年如一日地死缠猛打央视拨阴员赵老湿，起因据说是赵老湿舍不得给饶颖3800块钱，哎，何必呢？早知道今天这个场面，估计后面加上三个0，赵老湿也认了。 <br />　　<br />饶
颖日记（三）节选：有几次在一起，他用刀割我的手臂，用针沾了他的唾沫扎我的阴部，说是消毒。我痛得喊叫，他却兴奋不已地说：“宝贝，你不知道这样做，我
有多快乐，让我扎扎吧。”“赵忠祥虐待成性，即使我在经期，他也要与我发生关系。我不愿意，他就骂我打我，迫使我屈服。2000年上半年，我的泌尿系统因
此受感染，治疗不及时，导致肾炎。” <br />　　<br /><font color="#ff0000"><font color="#000000">解读：</font><strong>“宝贝，你不知道这样做，我有多快乐，让我扎扎吧。” 这哪是赵老湿，明明就是《依波拉病毒》和《人肉叉烧包》里的 黄秋生嘛！<br /></strong></font><br />5、巨NB的老师</p>
				<p>一个女孩和同学开玩笑，把对方的衣服脱光了，后来被班主任知道了，他叫来了三方的家长。当家长们决定不予以追究，只要对方道歉的时候，他说了：“呀，这可不得了，以前听说也有过这样一个例子，一个人把一个女同学的衣服脱光了，最后判了16年呢”最后那个女孩子因害怕自杀。</p>
				<p>解读：<strong><font color="#ff0000">终于体会到了什么叫做唯恐天下不乱？既然受害方都表示不愿再追究，为什么你要那么危言耸听呢？传说中的皇帝不急，你个太监急个球啊？最后结果是：一朵鲜花又凋谢了！</font></strong><br /><br />6、医托说：揍的就是院长！</p>
				<p>2006年11月23日，复旦大学附属眼耳喉鼻医院院长助理、浦东分 院院长：张天宇在揭穿医托的把戏后，遭到了一群医托群殴。此 时张院长大呼：我是医院院长！为首的一个医托答曰：揍的就是 院长！</p>
				<p>解读：<font color="#ff0000"><strong>以前在我们眼里，医托都是偷偷摸摸的，像做贼一样（本来就是做贼），现在你看看，时代进步了，社会发展了，医托也翻身得解放了，还能说出那样天地惊，鬼神泣的话！可以肯定是医托史上最NB的。</strong></font></p>
				<p>7、苏丹红鸭蛋吃不死人，放心吧</p>
				<p>北京市食品办专家：“按每个鸭蛋约60克进行折算，体重60公斤的成人每天食用1200多个“涉红鸭蛋”，才有可能达到诱发动物肿瘤的剂量。” </p>
				<p>解读：<strong><font color="#ff0000">食
品办专家原来一直在以人的体重与有毒食物食用量之比，作为他们工作的指导思想。你吃了毒木耳吗？专家可以告诉你：按多少多少克进行折算，体重60公斤的成
年人每天食用1吨，“才有可能达到诱发动物肿瘤”。你吃了毒猪肉吗？你吃了毒韭菜吗？你吃了毒大米吗？你吃了含有苏丹红Ⅰ号的广东亨氏美味源辣椒酱、肯德
基新奥尔良烤翅吗？吃吧，放心地吃吧，死不了。<br /></font></strong><br />8、北大教授阿忆：“在北大月收入4786元，靠学校那点工资很难生存和安心教学。” </p>
				<p>解读：<font color="#ff0000"><strong>幸亏阿忆教授还有几个兼差，要不怎么能在“哭穷”之际，又在中关村附近新购置了一套豪宅，“300万差1万”。</strong></font></p>
				<p>9、教育好比逛市场？</p>
				<p>教育部新闻发言人王旭明：“教育就好比逛市场买东西，如果有钱，可以去买1万元一套的衣服；如果没钱，就只能去小店，买100元一套的衣服穿。”</p>
				<p>解读：<strong><font color="#ff0000">许多国家的教育部门，都鼓励年轻人勇于追逐自己的梦想，鼓励年轻人突破自我，进入更高的层次、更好的学校深造，不想当将军的士兵不是好士兵，不想上哈佛的学生不是好学生。可我们的教育部门竟然对年轻人说:要考虑自己的经济能力，要有自知之明……</font></strong></p>
				<p>10、社会学家郑也夫：“自来水100元一吨保证可持续洗澡”。 </p>
				<p>解读：<font color="#ff0000"><strong>郑
老师说得很有道理，他算了账：瓶装矿泉水每瓶500—600毫升，1.5元一瓶。一吨瓶装矿泉水3000元。罐装饮用水一罐19升，大约10元多一罐。一
吨罐装饮用水550元。一吨自来水100元离谱吗？商人忽悠您买罐装水可以，自来水提价就不行？即使按照这个价格算，吃三根冰棍的价格（3元钱），就能淋
浴一次（淋浴龙头开4分钟大约用水30升）。为什么淋一次浴就一定要比吃三根冰棍便宜？</strong></font></p>
		</span>
<img src ="http://www.blogjava.net/dearwolf/aggbug/85927.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/dearwolf/" target="_blank"> 小小凉粉</a> 2006-12-06 20:31 <a href="http://www.blogjava.net/dearwolf/archive/2006/12/06/85927.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Marie Clarie 专访：张靓颖 草根公主 爱憎分明</title><link>http://www.blogjava.net/dearwolf/archive/2006/11/16/81489.html</link><dc:creator> 小小凉粉</dc:creator><author> 小小凉粉</author><pubDate>Thu, 16 Nov 2006 04:07:00 GMT</pubDate><guid>http://www.blogjava.net/dearwolf/archive/2006/11/16/81489.html</guid><wfw:comment>http://www.blogjava.net/dearwolf/comments/81489.html</wfw:comment><comments>http://www.blogjava.net/dearwolf/archive/2006/11/16/81489.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/dearwolf/comments/commentRss/81489.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/dearwolf/services/trackbacks/81489.html</trackback:ping><description><![CDATA[
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">从灰姑娘变成公主,和生下来就是公主,毕竟不一样,前者不会有后者的单纯,但也不会像后者那样容易受伤。</span>
				<span lang="EN-US">
						<?xml:namespace prefix = o /?>
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">见到张靓颖的那刻,屋子里人非常多,她一个箭步冲向沙发,一把将头顶上的报童帽丢到桌子上,叽里呱啦地和公司相熟的同事攀谈起来,语速快得惊人,,像个孩子般手舞足蹈。其间,还以非同寻常的速度干掉了一整瓶鲜橙多。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">经同事提醒,她才发现了我,于是规规矩矩坐过来,重新将双手缩到长袖衣服的袖管中,语速变得缓慢,神情收敛,一下子就变成另外一个样子。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">在厦门某酒吧举行的“凉粉”与张靓颖的见面会上,“凉粉”手牵手,用人墙把所有记者都隔离起来,不让记者靠近张靓颖,他们警告媒体记者,不要影响到他们的 “公主”。紧接着,在厦门国际马拉松发令式的媒体见面会上,张靓颖到场,同时到场的还有大批“凉粉”,其中一位义正词严“警告”记者说：“不要问八卦问题,我们已经不是传统意义上的粉丝,靓颖也不是传统意义上的明星。”</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">在这次采访前,到百度张靓颖吧上收集问题,也收到了同样的警告——“她已经把最美的歌声给了我们,站在这个舞台上忍受了很多伤害,所以,我们把生活还给她。郑重对你说,如果你是善良的,请不要问她私生活。她的性格很倔,如果你问了,而她的态度不好,我们只会鼓掌支持她。”</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<font face="Times New Roman">FANS</font>
				</span>
				<span style="FONT-FAMILY: 宋体">对张靓颖的维护已经到了无以复加的地步,尽管许多人认为,不少凉粉属于中产精英男士,他们大多低调——但低调不代表无声,连张靓颖都说,“现在‘玉米’和‘盒饭’更疯狂？我没有觉得啊</span>
				<span lang="EN-US">
						<font face="Times New Roman">!</font>
				</span>
				<span style="FONT-FAMILY: 宋体">我的粉丝也很热情”</span>
				<span lang="EN-US">
						<font face="Times New Roman">FANS</font>
				</span>
				<span style="FONT-FAMILY: 宋体">爱上的是和他们某些地方很相似的张靓颖,虽然看起来平平静静,但遇弱则柔,遇强则刚。就像前不久,她“斗胆”以一个刚出茅庐的歌手身份将上海某著名媒体一纸诉状告上法庭,理由是她认为该媒体侵害了她的名誉权。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">事实上,早在去年超女比赛中,她的“战斗”就开始了。在那样一个比赛中,嗓音一流的张靓颖遭遇到一种她从未经历过的尴尬,那就是：她唱得再好,也得不到冠军。虽然我们得不到证实,但她一定心里明白,这就是所谓的游戏规则。她的失落逐步变成了“孤傲”,被称为“自信得无可救药”,评委旁敲侧击,暗示她心机过重,甚至故意避而不谈她的演唱实力。而这个早早就经历过风浪的女孩,也从怯怯接受变为有意还击。比如,其中一场比赛中她唱完后,评委轮番向她发问：“你有没有感冒？发烧？生病？状态不佳？”张靓颖响亮回应：“我没有生病,我的状态非常好。”</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">正是这种直接,使得喜欢与不喜欢她的人截然分派。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">爱她的叫她公主。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">不与媒体为敌,她是个天生的艺人,懂得圆熟地闪避危险。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">网上有个流传颇广的帖子《不穿水晶鞋也能成为公主》中写到过一段她幼年时的经历,大概意思是小学时候她参演童话剧《灰姑娘》,剧情需要她试穿水晶鞋,她却擅自改了台词,高喊着“谢谢你,我不穿</span>
				<span lang="EN-US">
						<font face="Times New Roman">!</font>
				</span>
				<span style="FONT-FAMILY: 宋体">”使童话剧草草收场,当我问道她这个情节时,她却一脸茫然：“没有吧,我怎么不记得我这样干过。”紧接着她又打圆场说,“你知道嘛,许多</span>
				<span lang="EN-US">
						<font face="Times New Roman">FANS</font>
				</span>
				<span style="FONT-FAMILY: 宋体">喜欢凭着美好的想象编故事,让我在其中变得很美,事实上,我可没有那么大胆</span>
				<span lang="EN-US">
						<font face="Times New Roman">!</font>
				</span>
				<span style="FONT-FAMILY: 宋体">小时候一直惟‘母命’是从,不敢吭气,做错了事,妈妈是真会下狠手教训我的</span>
				<span lang="EN-US">
						<font face="Times New Roman">!</font>
				</span>
				<span style="FONT-FAMILY: 宋体">”</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">很乖,懂事,很早就学会坚强,还是也难捱娱乐圈的残酷,她在博客上写：“进入娱乐圈前,许多人提醒我要提防不良娱记……进入娱乐圈几个月,我已经见识了他们的高深道行,他们可不是落井下石,而是路上挖井,再用无敌幻化绯闻掌将你打入地狱……”几次公开落泪,却为她赢得更多感动,从不适应到接受、消化和享受成名带来的乐趣,她变得越来越从容。毕竟,从灰姑娘变成公主,和生下来就是公主的人木不一样的,前者不会有后者的单纯,但也不会像后者那样容易受伤。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">事实上,张靓颖并不是一个与媒体为敌的人,她是一个天生的艺人,懂得圆熟地闪避危险发挥长项,有人说她单纯,的确有些牵强。采访中,在很多问题上,她都表现出了相当成熟的特质。比如,官司到现在尚未水落石出,提及此事她淡淡地说：“我已经把所有事都交给公司去做了,自己现在只是专心致志录专辑。”比如,当被问到参加超女比赛成功除了实力和人气以外还有什么其它因素时,她哈哈大笑：“当然是运气了</span>
				<span lang="EN-US">
						<font face="Times New Roman">!</font>
				</span>
				<span style="FONT-FAMILY: 宋体">”而被追问平凡人如何才能有“好运气”,是否有“潜规则”才在时,她眼珠一转,很无辜：“我怎么知道,运气啦,神鬼莫测的,谁能清楚它的走向呢？”问她,什么事会引起她的不快,她很斩钉截铁地说：“嗯,如果你不按照我今天说的来写,我就会不开心。”</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">其实,她在采访中所表现出的敏捷、大方,虽心存抗拒和抵触却几乎不露痕迹,比起在娱乐圈摸爬滚打多年的艺人甚至是一线大牌来,都要漂亮和得体的多。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">关于新专辑,</span>
				<span lang="EN-US">
						<font face="Times New Roman">FANS</font>
				</span>
				<span style="FONT-FAMILY: 宋体">有个很大的呼声,那就是——强烈需要口水歌,她拖长了声回答：“有,让他们放心,一定有</span>
				<span lang="EN-US">
						<font face="Times New Roman">!</font>
				</span>
				<span style="FONT-FAMILY: 宋体">”可紧接着问她什么是口水歌时,她突然摇头,“不知道,因为说不好,一个人一个定义吧。比如某首歌,有人觉得是口水歌,别人也许不这么认为,觉得很有内涵啊。”</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">“不知道</span>
				<span lang="EN-US">
						<font face="Times New Roman">+</font>
				</span>
				<span style="FONT-FAMILY: 宋体">因为……</span>
				<span lang="EN-US">
						<font face="Times New Roman">(</font>
				</span>
				<span style="FONT-FAMILY: 宋体">一长串的解释</span>
				<span lang="EN-US">
						<font face="Times New Roman">)</font>
				</span>
				<span style="FONT-FAMILY: 宋体">”一定程度上成了她回答问题的模式,她在这个过程中,尽量寻找两全其美的答案。</span>
				<span lang="EN-US">
						<font face="Times New Roman">FANS</font>
				</span>
				<span style="FONT-FAMILY: 宋体">不择生熟的狂热拥趸</span>
				<span lang="EN-US">
						<font face="Times New Roman">VS</font>
				</span>
				<span style="FONT-FAMILY: 宋体">希望她至少有一首“口水歌”,原本就是一个矛盾,应该如何选择自己的定位？张靓颖想了想,依旧是：“不知道,但我在很用心地唱歌,很努力地为大家呈现一个多元华的自己。”</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">于是新专辑出现了一个很有趣的现象：英文歌和中文歌并存,欢快的舞曲和忧伤的抒情并存,翻唱与原唱并存,炫耀声线的阳春白雪和琅琅上口的下里巴人并存。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">厌她的人吹毛求疵。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">身陷娱乐圈,就免不了被折腾,她知道在恰当时候自娱娱人。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">现在在成都,只要对出租车司机说“去张靓颖唱歌的酒吧”,司机就能径直把你拉到玉林生活广场,那里的音乐房子和空瓶子都是她唱过歌的酒吧。但是成名带给她的不只是“成名”,一路</span>
				<span lang="EN-US">
						<font face="Times New Roman">PK</font>
				</span>
				<span style="FONT-FAMILY: 宋体">摆脱了平民身份的张靓颖不知怎么的,她的名字就和一些男女有了瓜葛,先是一位自称好友的人大曝张靓颖以前的情史,还言之凿凿地称她曾为某</span>
				<font face="Times New Roman">
				</font>
				<span style="FONT-FAMILY: 宋体">男友自杀,后有与某教授关系暧昧;不久后,</span>
				<font face="Times New Roman">
						<span lang="EN-US">
								<o:p>
								</o:p>
						</span>
				</font>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">张靓颖又成了黄健翔离婚的直接“杀手”,接下来再是访谈中谈到欣赏姚明便被传为“想借大个子炒作”,然后是刘翔驳了她的面子没能参加她亲手送上票的演唱会,有人跳出来说：“张靓颖,请别坑害刘翔</span>
				<span lang="EN-US">
						<font face="Times New Roman">!</font>
				</span>
				<span style="FONT-FAMILY: 宋体">”再到后来,又有所谓她曾经的“闺中密友”出来编排她翻脸不认人的不是……闹到眼前,以身兼在校自考生和当红歌星两重身份参加四川大学</span>
				<span lang="EN-US">
						<font face="Times New Roman">110</font>
				</span>
				<span style="FONT-FAMILY: 宋体">年校庆的张靓颖,依旧被指指点点,理由就是,她是自考生,能算校友吗？一批网友忿忿然：张靓颖何德何能参加校庆？学校不以学术成就宣传自己,却让一个不合格的逃学艺人为自己贴金,可耻呀可耻</span>
				<span lang="EN-US">
						<font face="Times New Roman">!<o:p></o:p></font>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">被放在更大的舞台上,需要的是歌唱以外的实力。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">面对纷扰,张靓颖只是淡淡地说：“我几乎不上网看这些,每天回家很晚,电视也懒得看,从美国带回来的那些</span>
				<span lang="EN-US">
						<font face="Times New Roman">CD</font>
				</span>
				<span style="FONT-FAMILY: 宋体">都没来得及仔细听,现在每一天雷打不动,就剩下洗澡,打开计算机连连看,等头发干,然后睡觉。”</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">而半年前,当记者提及争议和绯闻时她说：“娱乐圈都是这样,圈子里没有谁能逃过这些,这个怎么说呢,也算是一种规矩了。”从哭泣、气愤,到拾了隐身草,闭眼不理麻烦事,张靓颖已经学会为自己排解烦恼。</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">不过有一件事她倒是很豁达,那就是一直被攻击的造型问题。讨厌她的人特别喜欢揪住“不会打扮”这一点不放,而她自己这次却也从了众：“穿衣服这件事,我真是搞不懂,我就喜欢穿的特随便,而且又倔又懒。每次出席什么场合,都应该是带几身衣服让造型师挑选,而我经常就带一身,让他们没的挑。公司</span>
				<span lang="EN-US">
						<font face="Times New Roman">12</font>
				</span>
				<span style="FONT-FAMILY: 宋体">岁生日那天,我本来没穿那条隆重的黑裙子,只是白衬衫牛仔裤过来了,到场便傻眼了,因为在场的工作人员工作服就是白衬衫牛仔裤。还有去年超女比赛时有一套衣服,一开始我死活不想穿,和造型师打了半天架,最后拗不过只能穿了,结果到现在都被大家说那时最漂亮的一身,你说我审美是不是有问题啊？”</span>
				<span lang="EN-US">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US">
						<o:p>
								<font face="Times New Roman"> </font>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-FAMILY: 宋体">走红,自然会有负面新闻不断找上来。“我忘性很大,基本上属于杂草型,哭完就没事了。”张靓颖的智慧之处在于,她懂得在恰当的时候自娱娱人。娱乐圈就是名利场,明星就是金鱼,老百姓是看客。谁要是嫌看热闹还不够过瘾,自己跳进水里一起扑腾,那就真是典型的“无极”了,对于“无极”之人,她最终选择了不予理会。</span>
		</p>
<img src ="http://www.blogjava.net/dearwolf/aggbug/81489.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/dearwolf/" target="_blank"> 小小凉粉</a> 2006-11-16 12:07 <a href="http://www.blogjava.net/dearwolf/archive/2006/11/16/81489.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>[rcp系列]指定JFace.Dialog初始化的位置</title><link>http://www.blogjava.net/dearwolf/archive/2006/11/08/79861.html</link><dc:creator> 小小凉粉</dc:creator><author> 小小凉粉</author><pubDate>Wed, 08 Nov 2006 07:23:00 GMT</pubDate><guid>http://www.blogjava.net/dearwolf/archive/2006/11/08/79861.html</guid><wfw:comment>http://www.blogjava.net/dearwolf/comments/79861.html</wfw:comment><comments>http://www.blogjava.net/dearwolf/archive/2006/11/08/79861.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/dearwolf/comments/commentRss/79861.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/dearwolf/services/trackbacks/79861.html</trackback:ping><description><![CDATA[目的1：<span class="tpc_content">打开一个新的</span><span class="tpc_content">对话框</span><span class="tpc_content">时，如何设定它和父</span><span class="tpc_content">对话框</span><span class="tpc_content">的相对位置？比如在登录</span><span class="tpc_content">对话框</span><span class="tpc_content">有一个“创建新帐号”的按钮，用户点击以后，就出现新的对话框用于注册，请问如何能让新的</span><span class="tpc_content">对话框</span><span class="tpc_content">和旧</span><span class="tpc_content">对话框</span><span class="tpc_content">排列的整齐一些？应该是能设定二者的相对位置吧？</span><br /><br />最开始，以为要用<span class="tpc_content">Shell.setLocation来设置，但是对于一个Dialog而言，它的Shell在什么时候才能初始化呢？<br /><br />我
在构造函数里面，configureShell(Shell newShell)方法里面，Control
createDialogArea(Composite
parent)方法里面都调用过了this.getShell方法想得到当前的Shell，结果都抛出空指针异常....<br /><br />后来看书发现，应该重写protected Point getInitialLocation(Point initialSize)方法<br /><br />比如，在最开始的例子中，在第二个对话框中我重写了该方法，代码如下：<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, 0, 255);">protected</span><span style="color: rgb(0, 0, 0);"> Point getInitialLocation(Point initialSize) {<br />        Point location </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);"> Point(</span><span style="color: rgb(0, 0, 255);">this</span><span style="color: rgb(0, 0, 0);">.getParentShell().getLocation().x<br />                </span><span style="color: rgb(0, 0, 0);">+</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">this</span><span style="color: rgb(0, 0, 0);">.getParentShell().getBounds().width, </span><span style="color: rgb(0, 0, 255);">this</span><span style="color: rgb(0, 0, 0);"><br />                .getParentShell().getLocation().y<br />                </span><span style="color: rgb(0, 0, 0);">+</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">this</span><span style="color: rgb(0, 0, 0);">.getParentShell().getBounds().height<br />                </span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">this</span><span style="color: rgb(0, 0, 0);">.getInitialSize().y);<br />        </span><span style="color: rgb(0, 0, 255);">return</span><span style="color: rgb(0, 0, 0);"> location;<br />    }</span></div><br /><br />其结果就是两个对话框底部对齐的平行排列：）<br /><br /></span>目的2: 登陆对话框要记住上次的位置。<br /><br />想了半天，好像只能用IPreferenceStore来做了，在继承了AbstractUIPlugin的类中放入两个常量：<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, 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);">final</span><span style="color: rgb(0, 0, 0);"> String LOGINDIALOG_POSITION_X </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);">LOGINDIALOG_POSITION_X</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">;<br /><br />    </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);">final</span><span style="color: rgb(0, 0, 0);"> String LOGINDIALOG_POSITION_Y </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);">LOGINDIALOG_POSITION_Y</span><span style="color: rgb(0, 0, 0);">"</span><span style="color: rgb(0, 0, 0);">;</span></div><br />然后重写两个方法：<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, 0, 0);">    @Override<br />    </span><span style="color: rgb(0, 0, 255);">protected</span><span style="color: rgb(0, 0, 0);"> Point getInitialLocation(Point initialSize) {<br /><br />        String xposition </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> preferenceStore<br />                .getString(Peer68TPlugin.LOGINDIALOG_POSITION_X);<br />        String yposition </span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);"> preferenceStore<br />                .getString(Peer68TPlugin.LOGINDIALOG_POSITION_Y);<br />        </span><span style="color: rgb(0, 0, 255);">if</span><span style="color: rgb(0, 0, 0);"> (xposition </span><span style="color: rgb(0, 0, 0);">==</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">null</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 0);">||</span><span style="color: rgb(0, 0, 0);"> yposition </span><span style="color: rgb(0, 0, 0);">==</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">null || xposition == ""<br />                || yposition == ""</span><span style="color: rgb(0, 0, 0);">) {<br />            </span><span style="color: rgb(0, 0, 255);">return</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">super</span><span style="color: rgb(0, 0, 0);">.getInitialLocation(initialSize);<br />        } </span><span style="color: rgb(0, 0, 255);">else</span><span style="color: rgb(0, 0, 0);"> {<br />            </span><span style="color: rgb(0, 0, 255);">return</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);"> Point(Integer.parseInt(xposition), Integer<br />                    .parseInt(yposition));<br />        }<br />    }<br /><br />    @Override<br />    </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);">boolean</span><span style="color: rgb(0, 0, 0);"> close() {<br />        preferenceStore.setValue(Peer68TPlugin.LOGINDIALOG_POSITION_X, </span><span style="color: rgb(0, 0, 255);">this</span><span style="color: rgb(0, 0, 0);"><br />                .getShell().getLocation().x);<br />        preferenceStore.setValue(Peer68TPlugin.LOGINDIALOG_POSITION_Y, </span><span style="color: rgb(0, 0, 255);">this</span><span style="color: rgb(0, 0, 0);"><br />                .getShell().getLocation().y);<br />        </span><span style="color: rgb(0, 0, 255);">return</span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 255);">super</span><span style="color: rgb(0, 0, 0);">.close();<br />    }</span></div><br />大功告成！<br /><span class="tpc_content"><br /></span><img src ="http://www.blogjava.net/dearwolf/aggbug/79861.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/dearwolf/" target="_blank"> 小小凉粉</a> 2006-11-08 15:23 <a href="http://www.blogjava.net/dearwolf/archive/2006/11/08/79861.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Spring OSGI Bundle项目的配置--修正了官方的错误</title><link>http://www.blogjava.net/dearwolf/archive/2006/10/31/78365.html</link><dc:creator> 小小凉粉</dc:creator><author> 小小凉粉</author><pubDate>Tue, 31 Oct 2006 13:41:00 GMT</pubDate><guid>http://www.blogjava.net/dearwolf/archive/2006/10/31/78365.html</guid><wfw:comment>http://www.blogjava.net/dearwolf/comments/78365.html</wfw:comment><comments>http://www.blogjava.net/dearwolf/archive/2006/10/31/78365.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/dearwolf/comments/commentRss/78365.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/dearwolf/services/trackbacks/78365.html</trackback:ping><description><![CDATA[1. The Maven Command:<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, 0, 0);">mvn archetype:create<br /></span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);">DarchetypeGroupId</span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);">org.springframework.osgi<br /></span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);">DarchetypeArtifactId</span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);">spring</span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);">osgi</span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);">bundle</span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);">archetype<br /></span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);">DarchetypeVersion</span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);">1.0</span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);">SNAPSHOT<br /></span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);">DremoteRepositories</span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);">http:</span><span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">static.springframework.org/maven2-snapshots</span><span style="color: rgb(0, 128, 0);"><br /></span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);">DgroupId</span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);">maventest<br /></span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);">DartifactId</span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);">maventest<br /></span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);">Dversion</span><span style="color: rgb(0, 0, 0);">=</span><span style="color: rgb(0, 0, 0);">1.0</span><span style="color: rgb(0, 0, 0);">.</span><span style="color: rgb(0, 0, 0);">0</span></div><br /><br />2. After the project is successfully created, please add the following repositories to the POM<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, 0, 0);"><br /> </span><span style="color: rgb(0, 0, 0);">&lt;</span><span style="color: rgb(0, 0, 0);">repository</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);"><br />    </span><span style="color: rgb(0, 0, 0);">&lt;</span><span style="color: rgb(0, 0, 0);">id</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);"> springframework.org </span><span style="color: rgb(0, 0, 0);">&lt;/</span><span style="color: rgb(0, 0, 0);">id</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);"><br />    </span><span style="color: rgb(0, 0, 0);">&lt;</span><span style="color: rgb(0, 0, 0);">name</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);">Springframework Maven SNAPSHOT Repository</span><span style="color: rgb(0, 0, 0);">&lt;/</span><span style="color: rgb(0, 0, 0);">name</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);"><br />    </span><span style="color: rgb(0, 0, 0);">&lt;</span><span style="color: rgb(0, 0, 0);">url</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);"> http:</span><span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">static.springframework.org/maven2-snapshots/ &lt;/url&gt;</span><span style="color: rgb(0, 128, 0);"><br /></span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 0);">&lt;/</span><span style="color: rgb(0, 0, 0);">repository</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);">                 <br />                       <br /> </span><span style="color: rgb(0, 0, 0);">&lt;</span><span style="color: rgb(0, 0, 0);">repository</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);">                                        <br />    </span><span style="color: rgb(0, 0, 0);">&lt;</span><span style="color: rgb(0, 0, 0);">id</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);">safehaus</span><span style="color: rgb(0, 0, 0);">-</span><span style="color: rgb(0, 0, 0);">repository</span><span style="color: rgb(0, 0, 0);">&lt;/</span><span style="color: rgb(0, 0, 0);">id</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);">                       <br />    </span><span style="color: rgb(0, 0, 0);">&lt;</span><span style="color: rgb(0, 0, 0);">name</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);">Safehaus Repository</span><span style="color: rgb(0, 0, 0);">&lt;/</span><span style="color: rgb(0, 0, 0);">name</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);">                   <br />    </span><span style="color: rgb(0, 0, 0);">&lt;</span><span style="color: rgb(0, 0, 0);">url</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);">http:</span><span style="color: rgb(0, 128, 0);">//</span><span style="color: rgb(0, 128, 0);">m2.safehaus.org &lt;/url&gt;                  </span><span style="color: rgb(0, 128, 0);"><br /></span><span style="color: rgb(0, 0, 0);"> </span><span style="color: rgb(0, 0, 0);">&lt;/</span><span style="color: rgb(0, 0, 0);">repository</span><span style="color: rgb(0, 0, 0);">&gt;</span><span style="color: rgb(0, 0, 0);"> <br /></span></div><br /><div>
3. run "mvn compile", everything is ok! :-)<br /><br />Thanks for the help of every guys。</div><img src ="http://www.blogjava.net/dearwolf/aggbug/78365.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/dearwolf/" target="_blank"> 小小凉粉</a> 2006-10-31 21:41 <a href="http://www.blogjava.net/dearwolf/archive/2006/10/31/78365.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>偶也给自己加一双眼睛</title><link>http://www.blogjava.net/dearwolf/archive/2006/10/30/78014.html</link><dc:creator> 小小凉粉</dc:creator><author> 小小凉粉</author><pubDate>Mon, 30 Oct 2006 03:58:00 GMT</pubDate><guid>http://www.blogjava.net/dearwolf/archive/2006/10/30/78014.html</guid><wfw:comment>http://www.blogjava.net/dearwolf/comments/78014.html</wfw:comment><comments>http://www.blogjava.net/dearwolf/archive/2006/10/30/78014.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/dearwolf/comments/commentRss/78014.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/dearwolf/services/trackbacks/78014.html</trackback:ping><description><![CDATA[
		<img src="file:///C:/DOCUME%7E1/User/LOCALS%7E1/Temp/moz-screenshot.jpg" alt="" />
		<pre id="line92">
				<br />
		</pre>
		<script type="text/javascript" src="http://wujunlove.googlepages.com/bigstaticeyes.js">
		</script>
<img src ="http://www.blogjava.net/dearwolf/aggbug/78014.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/dearwolf/" target="_blank"> 小小凉粉</a> 2006-10-30 11:58 <a href="http://www.blogjava.net/dearwolf/archive/2006/10/30/78014.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>偶的文品测算结果</title><link>http://www.blogjava.net/dearwolf/archive/2006/10/26/77448.html</link><dc:creator> 小小凉粉</dc:creator><author> 小小凉粉</author><pubDate>Thu, 26 Oct 2006 10:10:00 GMT</pubDate><guid>http://www.blogjava.net/dearwolf/archive/2006/10/26/77448.html</guid><wfw:comment>http://www.blogjava.net/dearwolf/comments/77448.html</wfw:comment><comments>http://www.blogjava.net/dearwolf/archive/2006/10/26/77448.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/dearwolf/comments/commentRss/77448.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/dearwolf/services/trackbacks/77448.html</trackback:ping><description><![CDATA[
		<h2 class="title1">第一个评价是来自于我前年冬天的博客，第二个评价是来自于我01年的一篇文章----差别还可以.....</h2>
		<h2 class="title1">小小凉粉，您的总体评价：</h2>
		<p class="evaluate">文字的平民化韵味浓郁，具有很强的生活气息；相对正统的创作路线，可读性较强。架构清晰，逻辑性强，情节缜密，可读性强；文章内容丰富，观点翔实可圈可点；在用词范围方面可以着重下功夫改进。情节缜密题材的小说值得尝试，将推理、悬念、历史的因素掺杂其中；同时也可以尝试杂文、评论等文体。行文时留心描写与情节结构的紧密配合，必然会诞生令人耳目一新的作品。</p>
		<br />
		<div id="chart_title">
				<h2 class="title1">小小凉粉，您的测算结果：</h2>
		</div>
		<p>通过测算，您的文章与知名作家的相似度比较结果见下:</p>
		<div id="chart">
				<div class="resultbox bg1">
						<dl>
								<dt class="authorname">
										<a href="http://www.sogou.com/web?query=%20%E7%8E%8B%E5%AE%89%E5%BF%86" target="_blank">王安忆</a>
								</dt>
								<dd class="bar">
										<img src="http://www.sogou.com/images/statsword/bar1.gif" height="13" width="51" />
								</dd>
								<dd class="similarity">27% 
</dd>
								<dd class="comment">没有想到吧，你有这位作家那么一点点的味道哟。 </dd>
						</dl>
				</div>
				<div class="resultbox bg2">
						<dl>
								<dt class="authorname">
										<a href="http://www.sogou.com/web?query=%20%E5%BC%A0%E5%B0%8F%E5%A8%B4" target="_blank">张小娴</a>
								</dt>
								<dd class="bar">
										<img src="http://www.sogou.com/images/statsword/bar2.gif" height="13" width="47" />
								</dd>
								<dd class="similarity">25% 
</dd>
								<dd class="comment">没有想到吧，你有这位作家那么一点点的味道哟。 </dd>
						</dl>
				</div>
				<div class="resultbox bg3">
						<dl>
								<dt class="authorname">
										<a href="http://www.sogou.com/web?query=%20%E9%83%91%E6%B8%8A%E6%B4%81" target="_blank">郑渊洁</a>
								</dt>
								<dd class="bar">
										<img src="http://www.sogou.com/images/statsword/bar3.gif" height="13" width="21" />
								</dd>
								<dd class="similarity">11% 
</dd>
								<dd class="comment">如果不是我们科学的分析结果，你没有发觉自己还有些许这位作家的风格吧^_^ </dd>
						</dl>
				</div>
		</div>
		<br />
		<h2 class="title1">小小凉粉，您的总体评价：</h2>
		<p class="evaluate">古风古韵的味道，古色古香的文字。架构清晰，逻辑性强，情节缜密，可读性强；文章内容丰富，观点翔实可圈可点；在用词范围方面可以着重下功夫改进。情节缜密题材的小说值得尝试，将推理、悬念、历史的因素掺杂其中；同时也可以尝试杂文、评论等文体。行文时留心描写与情节结构的紧密配合，必然会诞生令人耳目一新的作品。</p>
		<br />
		<div id="chart_title">
				<h2 class="title1">小小凉粉，您的测算结果：</h2>
		</div>
		<p>通过测算，您的文章与知名作家的相似度比较结果见下:</p>
		<div id="chart">
				<div class="resultbox bg1">
						<dl>
								<dt class="authorname">
										<a href="http://www.sogou.com/web?query=%20%E5%8F%A4%E9%BE%99" target="_blank">古龙</a>
								</dt>
								<dd class="bar">
										<img src="http://www.sogou.com/images/statsword/bar1.gif" height="13" width="32" />
								</dd>
								<dd class="similarity">17%</dd>
								<dd class="comment">这个区间是比较正常的，看来你已经有了掌握神韵的感觉喔。</dd>
						</dl>
				</div>
				<div class="resultbox bg2">
						<dl>
								<dt class="authorname">
										<a href="http://www.sogou.com/web?query=%20%E5%BC%A0%E5%B0%8F%E5%A8%B4" target="_blank">张小娴</a>
								</dt>
								<dd class="bar">
										<img src="http://www.sogou.com/images/statsword/bar2.gif" height="13" width="25" />
								</dd>
								<dd class="similarity">13%</dd>
								<dd class="comment">如果不是我们科学的分析结果，你没有发觉自己还有些许这位作家的风格吧^_^</dd>
						</dl>
				</div>
				<div class="resultbox bg3">
						<dl>
								<dt class="authorname">
										<a href="http://www.sogou.com/web?query=%20%E9%92%B1%E9%92%9F%E4%B9%A6" target="_blank">钱钟书</a>
								</dt>
								<dd class="bar">
										<img src="http://www.sogou.com/images/statsword/bar3.gif" height="13" width="15" />
								</dd>
								<dd class="similarity">8%</dd>
								<dd class="comment">如果不是我们科学的分析结果，你没有发觉自己还有些许这位作家的风格吧^_^</dd>
						</dl>
				</div>
		</div>
<img src ="http://www.blogjava.net/dearwolf/aggbug/77448.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/dearwolf/" target="_blank"> 小小凉粉</a> 2006-10-26 18:10 <a href="http://www.blogjava.net/dearwolf/archive/2006/10/26/77448.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>一段无聊的对话</title><link>http://www.blogjava.net/dearwolf/archive/2006/10/26/77440.html</link><dc:creator> 小小凉粉</dc:creator><author> 小小凉粉</author><pubDate>Thu, 26 Oct 2006 09:29:00 GMT</pubDate><guid>http://www.blogjava.net/dearwolf/archive/2006/10/26/77440.html</guid><wfw:comment>http://www.blogjava.net/dearwolf/comments/77440.html</wfw:comment><comments>http://www.blogjava.net/dearwolf/archive/2006/10/26/77440.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/dearwolf/comments/commentRss/77440.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/dearwolf/services/trackbacks/77440.html</trackback:ping><description><![CDATA[
		<p>Sailor   骂的，真骚，用英语聊个P啊 <br />小刀   是啊 <br />小刀   你真骚 <br />Sailor  你更骚 <br />Sailor  你最骚 <br />小刀   你最骚 <br />小刀   你是骚上加骚 <br />Sailor  骚！ <br />小刀   别忘了，是你先说英语的！ <br />Sailor  谁让你跟着说来着 <br />小刀   所以最骚的是你 <br />Sailor  你是跟骚！ <br />小刀   ok，没问题，反正你最骚 <br /></p>
<img src ="http://www.blogjava.net/dearwolf/aggbug/77440.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/dearwolf/" target="_blank"> 小小凉粉</a> 2006-10-26 17:29 <a href="http://www.blogjava.net/dearwolf/archive/2006/10/26/77440.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Hero</title><link>http://www.blogjava.net/dearwolf/archive/2006/10/19/76066.html</link><dc:creator> 小小凉粉</dc:creator><author> 小小凉粉</author><pubDate>Thu, 19 Oct 2006 01:07:00 GMT</pubDate><guid>http://www.blogjava.net/dearwolf/archive/2006/10/19/76066.html</guid><wfw:comment>http://www.blogjava.net/dearwolf/comments/76066.html</wfw:comment><comments>http://www.blogjava.net/dearwolf/archive/2006/10/19/76066.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/dearwolf/comments/commentRss/76066.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/dearwolf/services/trackbacks/76066.html</trackback:ping><description><![CDATA[
		<p>首唱会上，靓颖还唱了光芒，她第一张EP的主打歌。她说这首歌正是她彼时的心里话，“谢谢你一直陪在我的身旁”。当人们拥
有高度的物质文明时，回眸一顾，精神家园却已花果飘零。于是当这个坚强自信、勇敢执著、珍爱友谊的东方女孩出现的时候，我们心甘情愿，陪她一同面对艰难、
挫折、成功、喜悦。 </p>
		<p>当靓颖独自一人站在高台上，说这首歌使她决心成为一个好歌手
的时候，我们都知道是什么，已经有人喊出了《Hero》。当她从高台上跳下的时候，当熟悉的旋律响起来，全场静默。我敢说这时候一定有人在热泪盈眶。一曲
结束的时候，她将手抬起，伸出食指，指向台下的凉粉，然后深深一躬。 </p>
		<p> 所有靓颖的Hero版本——也许是因为这是我第一次听见现场——我觉得最为震撼——靓颖在动情。 </p>
		<p> 我在想什么？我在想，靓颖一路走来，并非青云直上，一帆风顺。沉沉黑夜里，有一步步深深浅浅的脚印。然而勇者无惧，寂寂风中，有凉粉举烛相伴，成就靓颖今夜的The One。所以，从《光芒》到《英雄》，才是那样感天动地，荡气回肠! </p>
		<p>
那时候她在想什么？她一定想起小时候听着卡带的情景，想起参加超女中的种种，想起所有凉粉的陪伴，让她有勇气追求自己的梦想。所以，仔细去看，她跳下高台
的表情和步履是那样的义无反顾，走向凉粉的表情和步履同样是那样义无反顾。她被我们奉为“英雄”，她又把“英雄”送给了我们。 </p>
		<p> 而我们——在台下挥舞荧光棒的凉粉、守在电脑前不肯离去的凉粉——风霜雨雪中，永远是为英雄守候的身影，为靓颖担待的脊梁!</p>
<img src ="http://www.blogjava.net/dearwolf/aggbug/76066.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/dearwolf/" target="_blank"> 小小凉粉</a> 2006-10-19 09:07 <a href="http://www.blogjava.net/dearwolf/archive/2006/10/19/76066.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>