<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>书虫与玩家</title>
	<link>http://rongjunxue.viminta.com</link>
	<description>Work hard and play hard &#038; Work smart and play smart</description>
	<pubDate>Wed, 09 Jun 2010 08:10:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>让OUTLOOK开机自动运行，且开机运行时不要打开OUTLOOK？而让它最小化托盘</title>
		<link>http://rongjunxue.viminta.com/?p=157</link>
		<comments>http://rongjunxue.viminta.com/?p=157#comments</comments>
		<pubDate>Wed, 09 Jun 2010 08:10:07 +0000</pubDate>
		<dc:creator>rongjunXue</dc:creator>
		
		<category><![CDATA[杂记]]></category>

		<guid isPermaLink="false">http://rongjunxue.viminta.com/?p=157</guid>
		<description><![CDATA[1. 创建一个outlook的快捷方式
2. 将快捷方式放入: 开始菜单-&#62;所有程序-&#62;启动   这个文件中
3. 右键点击这个快捷方式,选择属性,  在&#8221;快捷方式&#8221;页签中将运行方式修改为 &#8220;最小化&#8221;
]]></description>
			<content:encoded><![CDATA[<p>1. 创建一个outlook的快捷方式<br />
2. 将快捷方式放入: 开始菜单-&gt;所有程序-&gt;启动   这个文件中<br />
3. 右键点击这个快捷方式,选择属性,  在&#8221;快捷方式&#8221;页签中将运行方式修改为 &#8220;最小化&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://rongjunxue.viminta.com/?feed=rss2&amp;p=157</wfw:commentRss>
		</item>
		<item>
		<title>检测apache是否支持htaccess文件</title>
		<link>http://rongjunxue.viminta.com/?p=156</link>
		<comments>http://rongjunxue.viminta.com/?p=156#comments</comments>
		<pubDate>Tue, 08 Jun 2010 17:04:22 +0000</pubDate>
		<dc:creator>rongjunXue</dc:creator>
		
		<category><![CDATA[杂记]]></category>

		<guid isPermaLink="false">http://rongjunxue.viminta.com/?p=156</guid>
		<description><![CDATA[第一：检测  apache是否开启mod_rewrite
通过php提供的phpinfo()函数查看环境配置，在“apache2handler —&#62; Loaded   Modules”里看是否有“mod_rewrite”模块，如没开启则在apache配置文件httpd.conf 中找到“#LoadModule   rewrite_module modules/mod_rewrite.so”去掉前面的“#”号，重启apache即可
第二：检测apache是否支持 “.htaccess”
如测试中不支持“.htaccess”，那在apache配置文件httpd.conf   中找到“&#60;Directory /&#62;”与“&#60;/Directory&#62;”内的“AllowOverride   None”改为“AllowOverride All”，重启apache即可
第三：创建.htaccess 文件
创建.htaccess   文件方法：新建文本文档，名字为“htaccess.txt”，再打开“htaccess.txt”另存为，此时注意，名称改为  “”.htaccess””保存即可
第四：测试伪静态实例
.htaccess文件中输入：
RewriteEngine on
RewriteRule ([a-zA-Z]{1,})-([0-9]{1,})-([0-9]{1,})\.html$   index.php?action=$1&#38;id=$2&#38;page=$3
新建index.php文件并输入：
&#60;?php
echo ‘action=’.$_GET[&#8217;action&#8217;];
echo ‘&#60;br&#62;id=’.$_GET[&#8217;id&#8217;];
echo ‘&#60;br&#62;page=’.$_GET[&#8217;page&#8217;];
?&#62;
在地址栏中输入 http://127.0.0.1/view-8-2.html 按回车将显示出参数：
action=view
id=8
page=2
]]></description>
			<content:encoded><![CDATA[<p id="blog_text"><strong><span style="color: #ff0000">第一：检测  apache是否开启mod_rewrite</span></strong><br />
通过php提供的phpinfo()函数查看环境配置，在“apache2handler —&gt; Loaded   Modules”里看是否有“mod_rewrite”模块，如没开启则在apache配置文件httpd.conf 中找到“#LoadModule   rewrite_module modules/mod_rewrite.so”去掉前面的“#”号，重启apache即可</p>
<p><strong><span style="color: #ff0000">第二：检测apache是否支持 “.htaccess”<br />
</span></strong>如测试中不支持“.htaccess”，那在apache配置文件httpd.conf   中找到“&lt;Directory /&gt;”与“&lt;/Directory&gt;”内的“AllowOverride   None”改为“AllowOverride All”，重启apache即可</p>
<p><strong><span style="color: #ff0000">第三：创建.htaccess 文件</span></strong><br />
创建.htaccess   文件方法：新建文本文档，名字为“htaccess.txt”，再打开“htaccess.txt”另存为，此时注意，名称改为  “”.htaccess””保存即可</p>
<p><strong><span style="color: #ff0000">第四：测试伪静态实例</span></strong><br />
<span style="color: #ff00ff">.htaccess文件中输入：</span><br />
RewriteEngine on<br />
RewriteRule ([a-zA-Z]{1,})-([0-9]{1,})-([0-9]{1,})\.html$   index.php?action=$1&amp;id=$2&amp;page=$3<br />
<span style="color: #ff00ff">新建index.php文件并输入：</span><br />
&lt;?php<br />
echo ‘action=’.$_GET[&#8217;action&#8217;];<br />
echo ‘&lt;br&gt;id=’.$_GET[&#8217;id&#8217;];<br />
echo ‘&lt;br&gt;page=’.$_GET[&#8217;page&#8217;];<br />
?&gt;<br />
<span style="color: #ff00ff">在地址栏中输入 </span><a href="http://127.0.0.1/view-8-2.html"><span style="color: #ff00ff">http://127.0.0.1/view-8-2.html</span></a> <span style="color: #ff00ff">按回车将显示出参数：</span><br />
action=view<br />
id=8<br />
page=2</p>
]]></content:encoded>
			<wfw:commentRss>http://rongjunxue.viminta.com/?feed=rss2&amp;p=156</wfw:commentRss>
		</item>
		<item>
		<title>vim 列块编辑</title>
		<link>http://rongjunxue.viminta.com/?p=155</link>
		<comments>http://rongjunxue.viminta.com/?p=155#comments</comments>
		<pubDate>Mon, 26 Apr 2010 10:21:03 +0000</pubDate>
		<dc:creator>rongjunXue</dc:creator>
		
		<category><![CDATA[杂记]]></category>

		<guid isPermaLink="false">http://rongjunxue.viminta.com/?p=155</guid>
		<description><![CDATA[CTRL+v 进入列块编辑
注意，windows下，CTRL+v 是粘贴快捷键，进入块编辑的方式为：先v一下，然后再输入Ctrl+q
上下选中所要编辑行
大写I 进入插入模式
敲上在所编辑行前面要加的字符
Esc
五步做完后就在所有选中行前加上了相同的内容，很方便哦
注：vim是linux下一种文本编辑器。
]]></description>
			<content:encoded><![CDATA[<p id="blog_text" class="cnt">CTRL+v 进入列块编辑</p>
<p>注意，windows下，CTRL+v 是粘贴快捷键，进入块编辑的方式为：先v一下，然后再输入Ctrl+q</p>
<p>上下选中所要编辑行</p>
<p>大写I 进入插入模式</p>
<p>敲上在所编辑行前面要加的字符</p>
<p>Esc</p>
<p>五步做完后就在所有选中行前加上了相同的内容，很方便哦</p>
<p>注：vim是linux下一种文本编辑器。</p>
]]></content:encoded>
			<wfw:commentRss>http://rongjunxue.viminta.com/?feed=rss2&amp;p=155</wfw:commentRss>
		</item>
		<item>
		<title>笔记本电脑漏电的解决办法【网摘】</title>
		<link>http://rongjunxue.viminta.com/?p=154</link>
		<comments>http://rongjunxue.viminta.com/?p=154#comments</comments>
		<pubDate>Tue, 25 Aug 2009 23:12:02 +0000</pubDate>
		<dc:creator>rongjunXue</dc:creator>
		
		<category><![CDATA[杂记]]></category>

		<guid isPermaLink="false">http://rongjunxue.viminta.com/?p=154</guid>
		<description><![CDATA[[分享]笔记本电脑漏电的解决办法
上周珍珠抱怨她的小本经常漏电，联想到我用的thinkpad也有轻微的漏电现象，在触摸某些部位时会有酥麻的感觉，于是上网查了一下，写了一个解决流程，供大家参考。
步骤1：首先拔掉外接电源，使用电池供电。如果漏电状况消失，那么说明是插座地线的问题，进入步骤2；如果还漏电，那么联系经销商维修。
步骤2：确认所接插座有没有接地，一个最简单的办法是用电笔或万用表测一下插座。如果地电压为零，则说明插座接地了，进入步骤3；否则换插座或重新布地线。
步骤3：你的电源适配器或笔记本的外壳绝缘性能不好，应当更换相关配件。另外，湿度低容易产生静电现象，也是造成“触电”的大敌。
原文：http://q.yesky.com/group/review-15343290.html
]]></description>
			<content:encoded><![CDATA[<p>[分享]笔记本电脑漏电的解决办法<br />
上周珍珠抱怨她的小本经常漏电，联想到我用的thinkpad也有轻微的漏电现象，在触摸某些部位时会有酥麻的感觉，于是上网查了一下，写了一个解决流程，供大家参考。</p>
<p>步骤1：首先拔掉外接电源，使用电池供电。如果漏电状况消失，那么说明是插座地线的问题，进入步骤2；如果还漏电，那么联系经销商维修。</p>
<p>步骤2：确认所接插座有没有接地，一个最简单的办法是用电笔或万用表测一下插座。如果地电压为零，则说明插座接地了，进入步骤3；否则换插座或重新布地线。</p>
<p>步骤3：你的电源适配器或笔记本的外壳绝缘性能不好，应当更换相关配件。另外，湿度低容易产生静电现象，也是造成“触电”的大敌。</p>
<p>原文：http://q.yesky.com/group/review-15343290.html</p>
]]></content:encoded>
			<wfw:commentRss>http://rongjunxue.viminta.com/?feed=rss2&amp;p=154</wfw:commentRss>
		</item>
		<item>
		<title>禁止光驱和U盘的自动播放</title>
		<link>http://rongjunxue.viminta.com/?p=153</link>
		<comments>http://rongjunxue.viminta.com/?p=153#comments</comments>
		<pubDate>Tue, 04 Aug 2009 02:36:21 +0000</pubDate>
		<dc:creator>rongjunXue</dc:creator>
		
		<category><![CDATA[杂记]]></category>

		<guid isPermaLink="false">http://rongjunxue.viminta.com/?p=153</guid>
		<description><![CDATA[禁止光驱和U盘的自动播放是禁止病毒进入电脑的理智方法。所谓杜绝病毒源头，治根要治本。不过很多朋友对于如何禁止光驱和U盘的自动播放就不太理解，下面笔者给大家介绍两种方法。
系统本身就自带有禁止光驱自动播放的功能，但很多人都不知道。实现方法很简单。
1、点击“开始”选择“运行”，键入“gpedit.msc”，并运行，打开“组策略”窗口；
2、在左栏的“本地计算机策略”下，打开“计算机配置_管理模板_系统”，然后在右栏的“设置”标题下，双击“关闭自动播放”；
3、选择“设置”选项卡，勾取“已启用”复选钮，然后在“关闭自动播放”框中选择“所有驱动器”，单击“确定”按钮，退出“组策略”窗口。
]]></description>
			<content:encoded><![CDATA[<p>禁止光驱和U盘的自动播放是禁止病毒进入电脑的理智方法。所谓杜绝病毒源头，治根要治本。不过很多朋友对于如何禁止光驱和U盘的自动播放就不太理解，下面笔者给大家介绍两种方法。</p>
<p>系统本身就自带有禁止光驱自动播放的功能，但很多人都不知道。实现方法很简单。</p>
<p>1、点击“开始”选择“运行”，键入“gpedit.msc”，并运行，打开“组策略”窗口；</p>
<p>2、在左栏的“本地计算机策略”下，打开“计算机配置_管理模板_系统”，然后在右栏的“设置”标题下，双击“关闭自动播放”；</p>
<p>3、选择“设置”选项卡，勾取“已启用”复选钮，然后在“关闭自动播放”框中选择“所有驱动器”，单击“确定”按钮，退出“组策略”窗口。</p>
]]></content:encoded>
			<wfw:commentRss>http://rongjunxue.viminta.com/?feed=rss2&amp;p=153</wfw:commentRss>
		</item>
		<item>
		<title>FireFox3.5发布了</title>
		<link>http://rongjunxue.viminta.com/?p=152</link>
		<comments>http://rongjunxue.viminta.com/?p=152#comments</comments>
		<pubDate>Tue, 30 Jun 2009 22:41:47 +0000</pubDate>
		<dc:creator>rongjunXue</dc:creator>
		
		<category><![CDATA[浏览器]]></category>

		<guid isPermaLink="false">http://rongjunxue.viminta.com/?p=152</guid>
		<description><![CDATA[下载地址：http://www.mozilla.com/en-US/
升级后，某些插件可能暂时用不了，在作者升级插件前，我们可以通过以下方法使用这些插件：
1, 在输入网址的地址栏输入&#8217;about:config&#8217;   2, 右键-》new-&#62;boolean    3, &#8216;extensions.checkCompatibility&#8217;    4, false    5, 重启FireFox    
OK, 所有插件都可以使用了。
FireFox3.5 支持更多HTML5的特性：   https://developer.mozilla.org/En/Firefox_3.5_for_developers
新特性的一些Demo：   http://songserver.org.uk/
]]></description>
			<content:encoded><![CDATA[<p>下载地址：<a title="http://www.mozilla.com/en-US/" href="http://www.mozilla.com/en-US/">http://www.mozilla.com/en-US/</a></p>
<p>升级后，某些插件可能暂时用不了，在作者升级插件前，我们可以通过以下方法使用这些插件：</p>
<p>1, 在输入网址的地址栏输入&#8217;about:config&#8217;   <br />2, 右键-》new-&gt;boolean    <br />3, &#8216;extensions.checkCompatibility&#8217;    <br />4, false    <br />5, 重启FireFox    </p>
<p>OK, 所有插件都可以使用了。</p>
<p>FireFox3.5 支持更多HTML5的特性：   <br /><a title="https://developer.mozilla.org/En/Firefox_3.5_for_developers" href="https://developer.mozilla.org/En/Firefox_3.5_for_developers">https://developer.mozilla.org/En/Firefox_3.5_for_developers</a></p>
<p>新特性的一些Demo：   <br /><a title="http://songserver.org.uk/" href="http://songserver.org.uk/">http://songserver.org.uk/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rongjunxue.viminta.com/?feed=rss2&amp;p=152</wfw:commentRss>
		</item>
		<item>
		<title>网博会</title>
		<link>http://rongjunxue.viminta.com/?p=151</link>
		<comments>http://rongjunxue.viminta.com/?p=151#comments</comments>
		<pubDate>Sun, 28 Jun 2009 04:02:13 +0000</pubDate>
		<dc:creator>rongjunXue</dc:creator>
		
		<category><![CDATA[杂记]]></category>

		<guid isPermaLink="false">http://rongjunxue.viminta.com/?p=151</guid>
		<description><![CDATA[ 
 
 
 
 
 
 
 

]]></description>
			<content:encoded><![CDATA[<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00269.jpg" rel="lightbox"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG00269" src="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00269-thumb.jpg" width="208" height="276" /></a> </p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00271.jpg" rel="lightbox"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG00271" src="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00271-thumb.jpg" width="244" height="184" /></a> </p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00272.jpg" rel="lightbox"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG00272" src="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00272-thumb.jpg" width="244" height="184" /></a> </p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00275.jpg" rel="lightbox"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG00275" src="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00275-thumb.jpg" width="244" height="184" /></a> </p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00273.jpg" rel="lightbox"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG00273" src="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00273-thumb.jpg" width="244" height="184" /></a> </p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00278.jpg" rel="lightbox"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG00278" src="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00278-thumb.jpg" width="244" height="184" /></a> </p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00279.jpg" rel="lightbox"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG00279" src="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00279-thumb.jpg" width="244" height="184" /></a> </p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00280.jpg" rel="lightbox"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG00280" src="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00280-thumb.jpg" width="244" height="184" /></a> </p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00281.jpg" rel="lightbox"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG00281" src="http://rongjunxue.viminta.com/wp-content/uploads/2009/06/img00281-thumb.jpg" width="244" height="184" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://rongjunxue.viminta.com/?feed=rss2&amp;p=151</wfw:commentRss>
		</item>
		<item>
		<title>关于UltraEdit-32 bak备份文件的配置</title>
		<link>http://rongjunxue.viminta.com/?p=132</link>
		<comments>http://rongjunxue.viminta.com/?p=132#comments</comments>
		<pubDate>Sun, 12 Apr 2009 13:12:35 +0000</pubDate>
		<dc:creator>rongjunXue</dc:creator>
		
		<category><![CDATA[杂记]]></category>

		<guid isPermaLink="false">http://rongjunxue.viminta.com/?p=132</guid>
		<description><![CDATA[UltraEdit默认是开启备份的，有时候很麻烦   很都人都想要关掉文件备份的功能    其实不需要关掉，有时候如果出现什么意外的状况或许bak还能挽救一下    说重点吧    修改是在 &#8220;高级&#8221;-&#8220;配置&#8221; 里边修改    我用的是14.00a+1版本    备份选项在&#8220;高级&#8221;-&#8220;配置&#8221;-&#34;文件处理&#34;-&#34;备份&#34;     然后找个文件夹作为默认的备份目录就可以了，    设置好之后就会把bak文件备份到该目录上就不再出现在所编辑的文件的目录中    方便统一管理    至于其他版本，认准 &#8220;高级&#8221;-&#8220;配置&#8221; 就可以了，慢慢的找下
]]></description>
			<content:encoded><![CDATA[<p>UltraEdit默认是开启备份的，有时候很麻烦   <br />很都人都想要关掉文件备份的功能    <br />其实不需要关掉，有时候如果出现什么意外的状况或许bak还能挽救一下    <br />说重点吧    <br />修改是在 &#8220;高级&#8221;-&#8220;配置&#8221; 里边修改    <br />我用的是14.00a+1版本    <br />备份选项在&#8220;高级&#8221;-&#8220;配置&#8221;-&quot;文件处理&quot;-&quot;备份&quot;     <br />然后找个文件夹作为默认的备份目录就可以了，    <br />设置好之后就会把bak文件备份到该目录上就不再出现在所编辑的文件的目录中    <br />方便统一管理    <br />至于其他版本，认准 &#8220;高级&#8221;-&#8220;配置&#8221; 就可以了，慢慢的找下</p>
]]></content:encoded>
			<wfw:commentRss>http://rongjunxue.viminta.com/?feed=rss2&amp;p=132</wfw:commentRss>
		</item>
		<item>
		<title>几米漫画：结婚的意义 (组图)</title>
		<link>http://rongjunxue.viminta.com/?p=124</link>
		<comments>http://rongjunxue.viminta.com/?p=124#comments</comments>
		<pubDate>Tue, 24 Feb 2009 15:30:51 +0000</pubDate>
		<dc:creator>rongjunXue</dc:creator>
		
		<category><![CDATA[杂记]]></category>

		<guid isPermaLink="false">http://rongjunxue.viminta.com/?p=124</guid>
		<description><![CDATA[






]]></description>
			<content:encoded><![CDATA[<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry3.jpg" title="jimmy-marry3.jpg"></a><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry2.jpg" title="jimmy-marry2.jpg"></a><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry4.jpg" title="jimmy-marry4.jpg"></a><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry6.jpg" title="jimmy-marry6.jpg"></a><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry1.jpg" title="jimmy-marry1.jpg" rel="lightbox"><img src="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry1.jpg" alt="jimmy-marry1.jpg" /></a></p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry2.jpg" title="jimmy-marry2.jpg" rel="lightbox"><img src="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry2.jpg" alt="jimmy-marry2.jpg" /></a></p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry3.jpg" title="jimmy-marry3.jpg" rel="lightbox"><img src="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry3.jpg" alt="jimmy-marry3.jpg" /></a></p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry4.jpg" title="jimmy-marry4.jpg" rel="lightbox"><img src="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry4.jpg" alt="jimmy-marry4.jpg" /></a></p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry5.jpg" title="jimmy-marry5.jpg" rel="lightbox"><img src="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry5.jpg" alt="jimmy-marry5.jpg" /></a></p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry6.jpg" title="jimmy-marry6.jpg" rel="lightbox"><img src="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry6.jpg" alt="jimmy-marry6.jpg" /></a></p>
<p><a href="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry7.jpg" title="jimmy-marry7.jpg" rel="lightbox"><img src="http://rongjunxue.viminta.com/wp-content/uploads/2009/02/jimmy-marry7.jpg" alt="jimmy-marry7.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://rongjunxue.viminta.com/?feed=rss2&amp;p=124</wfw:commentRss>
		</item>
		<item>
		<title>[转]Eclipse代码自动提示（内容辅助content assist）</title>
		<link>http://rongjunxue.viminta.com/?p=120</link>
		<comments>http://rongjunxue.viminta.com/?p=120#comments</comments>
		<pubDate>Thu, 08 Jan 2009 01:55:10 +0000</pubDate>
		<dc:creator>rongjunXue</dc:creator>
		
		<category><![CDATA[IDE]]></category>

		<guid isPermaLink="false">http://rongjunxue.viminta.com/?p=120</guid>
		<description><![CDATA[原文：http://hi.baidu.com/zkheartboy/blog/item/3f23e61fd8c7d0f6e1fe0ba4.html
Eclipse中默认是输入&#8220;.&#8221;后出现自动提示，用于类成员的自动提示，可是有时候我们希望它能在我们输入类的首字母后就出现自动提示，可以节省大量的输入时间（虽然按alt + /会出现提示，但还是要多按一次按键，太麻烦了）。
     从Window -&#62; preferences -&#62; Java -&#62; Editor -&#62; Content assist -&#62; Auto-Activation下，我们可以在&#8220;.&#8221;号后面加入我们需要自动提示的首字幕，比如&#8220;ahiz&#8221;。
     然后我们回到Eclipse的开发环境，输入&#8220;a&#8221;，提示就出现了。
但是我们可以发现，这个Auto-Activation下的输入框里最多只能输入5个字母，也许是Eclipse的开发人员担心我们输入的太多会影响性能，但计算机的性能不用白不用，所以我们要打破这个限制。
其实上面都是铺垫，制造一下气氛，以显得我们下面要做的事情很牛似的，其实不然，一切都很简单。嘿嘿  
在&#8220;.&#8221;后面随便输入几个字符，比如&#8220;abij&#8221;，然后回到开发环境，File -&#62; export -&#62; general -&#62; preferences -&#62; 选一个地方保存你的首选项，比如C:\a.epf
用任何文本编辑器打开a.epf，查找字符串“abij”，找到以后，替换成“abcdefghijklmnopqrstuvwxyz”，总之就是你想怎样就怎样！！然后回到Eclipse，File -&#62; import -&#62; general -&#62; preferences -&#62; 导入刚才的a.epf文件。此时你会发现输入任何字幕都可以得到自动提示了。爽！！！
最后：自动提示弹出的时间最好改成100毫秒以下，这样会比较爽一点，不然你都完事了，自动提示才弹出来  ，不过也要看机器性能。
====================================
快速配置(Eclipse PDT上试验通过, 其它Eclipse版本建议用上面所说的通用方法进行设置)：
File -&#62; export -&#62; general -&#62; preferences -&#62; 选一个地方保存你的首选项，比如C:\a.epf

修改以下两个配置项的值为：
/instance/org.eclipse.php.ui/contentAssistAutoactivationDelay=100
/instance/org.eclipse.php.ui/contentAssistAutoactivationTriggersPHP=$_abcdefghijklmnopqrstuvwxyz-&#62;
File -&#62; import -&#62; general -&#62; preferences -&#62; [...]]]></description>
			<content:encoded><![CDATA[<p style="margin: 0cm 0cm 0pt; text-align: left" class="MsoNormal" align="left"><span style="font-size: 10pt; color: black">原文：<a href="http://hi.baidu.com/zkheartboy/blog/item/3f23e61fd8c7d0f6e1fe0ba4.html" target="_blank">http://hi.baidu.com/zkheartboy/blog/item/3f23e61fd8c7d0f6e1fe0ba4.html</a></span></p>
<p style="margin: 0cm 0cm 0pt; text-align: left" class="MsoNormal" align="left"><span style="font-size: 10pt; color: black">Eclipse</span><span style="font-size: 10pt; color: black">中默认是输入</span><span style="font-size: 10pt; color: black">&#8220;.&#8221;</span><span style="font-size: 10pt; color: black">后出现自动提示，用于类成员的自动提示，可是有时候我们希望它能在我们输入类的首字母后就出现自动提示，可以节省大量的输入时间（虽然按</span><span style="font-size: 10pt; color: black">alt + /</span><span style="font-size: 10pt; color: black">会出现提示，但还是要多按一次按键，太麻烦了）。</span><span style="font-size: 10pt; color: black"></span></p>
<p style="margin: 0cm 0cm 0pt; text-align: left" class="MsoNormal" align="left"><span style="font-size: 10pt; color: black"><span>     </span></span><span style="font-size: 10pt; color: black">从</span><span style="font-size: 10pt; color: black">Window -&gt; preferences -&gt; Java -&gt; Editor -&gt; Content assist -&gt; Auto-Activation</span><span style="font-size: 10pt; color: black">下，我们可以在</span><span style="font-size: 10pt; color: black">&#8220;.&#8221;</span><span style="font-size: 10pt; color: black">号后面加入我们需要自动提示的首字幕，比如</span><span style="font-size: 10pt; color: black">&#8220;ahiz&#8221;</span><span style="font-size: 10pt; color: black">。</span><span style="font-size: 10pt; color: black"></span></p>
<p style="margin: 0cm 0cm 0pt; text-align: left" class="MsoNormal" align="left"><span style="font-size: 10pt; color: black"><span>     </span></span><span style="font-size: 10pt; color: black">然后我们回到</span><span style="font-size: 10pt; color: black">Eclipse</span><span style="font-size: 10pt; color: black">的开发环境，输入</span><span style="font-size: 10pt; color: black">&#8220;a&#8221;</span><span style="font-size: 10pt; color: black">，提示就出现了。</span><span style="font-size: 10pt; color: black"></span></p>
<p style="margin: 0cm 0cm 0pt; text-indent: 21pt; text-align: left" class="MsoNormal" align="left"><span style="font-size: 10pt; color: black">但是我们可以发现，这个</span><span style="font-size: 10pt; color: black">Auto-Activation</span><span style="font-size: 10pt; color: black">下的输入框里最多只能输入</span><span style="font-size: 10pt; color: black">5</span><span style="font-size: 10pt; color: black">个字母，也许是</span><span style="font-size: 10pt; color: black">Eclipse</span><span style="font-size: 10pt; color: black">的开发人员担心我们输入的太多会影响性能，但计算机的性能不用白不用，所以我们要打破这个限制。</span><span style="font-size: 10pt; color: black"></span></p>
<p style="margin: 0cm 0cm 0pt; text-indent: 21pt; text-align: left" class="MsoNormal" align="left"><span style="font-size: 10pt; color: black">其实上面都是铺垫，制造一下气氛，以显得我们下面要做的事情很牛似的，其实不然，一切都很简单。嘿嘿</span><span style="font-size: 10pt; color: black"> <img src='http://rongjunxue.viminta.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p>
<p style="margin: 0cm 0cm 0pt; text-indent: 21pt; text-align: left" class="MsoNormal" align="left"><span style="font-size: 10pt; color: black">在</span><span style="font-size: 10pt; color: black">&#8220;.&#8221;</span><span style="font-size: 10pt; color: black">后面随便输入几个字符，比如</span><span style="font-size: 10pt; color: black">&#8220;abij&#8221;</span><span style="font-size: 10pt; color: black">，然后回到开发环境，</span><span style="font-size: 10pt; color: black">File -&gt; export -&gt; general -&gt; preferences -&gt; </span><span style="font-size: 10pt; color: black">选一个地方保存你的首选项，比如</span><span style="font-size: 10pt; color: black">C:\a.epf</span></p>
<p style="margin: 0cm 0cm 0pt; text-indent: 21pt; text-align: left" class="MsoNormal" align="left"><span style="font-size: 10pt; color: black">用任何文本编辑器打开</span><span style="font-size: 10pt; color: black">a.epf</span><span style="font-size: 10pt; color: black">，查找字符串“</span><span style="font-size: 10pt; color: black">abij</span><span style="font-size: 10pt; color: black">”，找到以后，替换成“</span><span style="font-size: 10pt; color: black">abcdefghijklmnopqrstuvwxyz</span><span style="font-size: 10pt; color: black">”，总之就是你想怎样就怎样！！然后回到</span><span style="font-size: 10pt; color: black">Eclipse</span><span style="font-size: 10pt; color: black">，</span><span style="font-size: 10pt; color: black">File -&gt; import -&gt; general -&gt; preferences -&gt; </span><span style="font-size: 10pt; color: black">导入刚才的</span><span style="font-size: 10pt; color: black">a.epf</span><span style="font-size: 10pt; color: black">文件。此时你会发现输入任何字幕都可以得到自动提示了。爽！！！</span><span style="font-size: 10pt; color: black"></span></p>
<p><span style="font-size: 10pt; color: black">最后：自动提示弹出的时间最好改成</span><span style="font-size: 10pt; color: black">100</span><span style="font-size: 10pt; color: black">毫秒以下，这样会比较爽一点，不然你都完事了，自动提示才弹出来</span><span style="font-size: 10pt; color: black"> <img src='http://rongjunxue.viminta.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span><span style="font-size: 10pt; color: black">，不过也要看机器性能。</span></p>
<p>====================================<br />
快速配置(Eclipse PDT上试验通过, 其它Eclipse版本建议用上面所说的通用方法进行设置)：<br />
<span style="font-size: 10pt; color: black"></span><span style="font-size: 10pt; color: black">File -&gt; export -&gt; general -&gt; preferences -&gt; </span><span style="font-size: 10pt; color: black">选一个地方保存你的首选项，比如</span><span style="font-size: 10pt; color: black">C:\a.epf</span></p>
<p><span style="font-size: 10pt; color: black"><br />
修改以下两个配置项的值为：<br />
/instance/org.eclipse.php.ui/contentAssistAutoactivationDelay=100</span><br />
/instance/org.eclipse.php.ui/contentAssistAutoactivationTriggersPHP=$_abcdefghijklmnopqrstuvwxyz-&gt;<br />
<span style="font-size: 10pt; color: black"></span><span style="font-size: 10pt; color: black">File -&gt; import -&gt; general -&gt; preferences -&gt; </span><span style="font-size: 10pt; color: black">导入刚才的</span><span style="font-size: 10pt; color: black">a.epf</span><span style="font-size: 10pt; color: black">文件</span></p>
<p>完成 （无需重启即可生效）</p>
<p>====================================</p>
]]></content:encoded>
			<wfw:commentRss>http://rongjunxue.viminta.com/?feed=rss2&amp;p=120</wfw:commentRss>
		</item>
	</channel>
</rss>
