博客首页
注册
建议与交流
排行榜
加入友情链接
推荐
投诉
搜索:
帮助
斯诺随笔 snowman Gossip
当追求自由 无所谓恐惧 执著成就梦想
zhuzimin.cublog.cn
管理博客
发表文章
留言
收藏夹
· unix 网站
博客圈
音乐
· 流行经典
· 外国经典
· 专辑-信乐团
· 专辑-胎教
· 专辑-齐秦
相册
· 梅花之约
· 云南印象
· 越狱
· 宁夏之旅
· 经典推荐永久收藏
文章
· 休闲随笔
· IEC61850
· 我的诗歌
· 越狱
· unix笔记
· 计算机软硬件技术
· 可爱宝宝
· Java学习日记
· 规约学习
· Eclipse
· SAS变电站自动化
· 心情日记
首页
关于作者
姓名:zzm 职业:打工一族 年龄:不到100岁 位置:东北的东北方向 个性介绍: --^--相由心生--^--
||
<<
>>
||
我的分类
文章列表 - Eclipse
eclipse构建C/C++运行环境(new)
<DIV>minGW解决Eclispe构建C/C++运行环境<BR>2007-10-25</DIV> <DIV><BR>1.download eclipse Version3.2, org.eclipse.cdt-3.1.2-win32.x86.zip,org.eclipse.cdt.sdk- 3.1.2-win32.x86.zip.</DIV> <DIV>2.install eclipse,cdt plugns......</DIV> <DIV>3.download MinGWStudioFullSetup-2_05 ,then install it;</DIV> <DIV>4.rename C:\MinGWStudio\MinGW\bin\mingw32-make.exe to make.exe.<BR>5.set the path ....,add the direction "D:\MinGW\MinGWStudio\MinGW\bin;". </DIV> <DIV> </DIV> <DIV> </DIV> <DIV>forexample</DIV> <DIV>==========</DIV> <DIV><PRE>#include <iostream> #include <string> using namespace std; int main() { string yourName; cout << "Enter your name: "; cin >> yourName; cout << "Hello " + yourName << endl; return 0; } </PRE><PRE> <H3>Save the file</H3><P>save the main.cpp file by clicking <SPAN style="FONT-WEIGHT: bold">FILE > SAVE</SPAN>, and build your project by typing <B>CTRL+B</B>.You can read through the build messages in the <B>Console</B> view. The project should build successfully, showing the following message:<TT><FONT face=新宋体>Build complete for project HelloWorld</FONT></TT></P></PRE><PRE>OK --Bye-Bye</PRE></DIV>
查看全文
发表于:2007-10-25 ┆
阅读(486)
┆
评论(0)
Eclispe环境编译C/C++时遇到问题(zhuzimin.cublog.cn)
<DIV>Eclispe环境编译C/C++时遇到问题(zhuzimin.cublog.cn):</DIV> <DIV><BR><STRONG>问题:<BR></STRONG>==== <BR>在学习eclipse时知道通过安装CDT插件可以构建C/C++运行环境,一直没时间小试牛刀。一试才被吓一跳原来还有些麻烦。 <BR>下载了eclipse Version3.2, org.eclipse.cdt-3.1.2-win32.x86.zip, org.eclipse.cdt.sdk-3.1.2-win32.x86.zip<BR>在写一个输出语句想测试一下环境的时候报错 <BR>Error: <BR>**** Incremental build of configuration Debug for project helloworld **** <BR>Build error <BR>(Exec error:Launching failed) <BR>而且和Eclipse教程中所演示的也不一样,一直没生成binary和include目录。你是不是也遇到了这样头痛的问题。</DIV> <DIV><BR><STRONG>分析:</STRONG><BR>====<BR>反复试了好久和eclipse设置没关系,参考google上的杂乱的文章试了好久终于搞好了。一起分享吧!</DIV> <DIV>与人分享成功的快乐才是最开心的事。希望本文对你有所帮助!</DIV> <DIV> </DIV> <DIV>cdt不带编译器,必须安装gcc、make和gdb工具才能进行C/C++程序编译和运行,需要你自己下载。<BR>1.可以考虑CYGWIN(CYGWIN的好处是可以模拟Unix/Linux环境,可以用一些Unix/Linux的命令)。<BR> 可以到<A href="http://www.cygwin.com">http://www.cygwin.com</A>去下载.<BR>2.可以考虑MINGW(Minimalist GNU for Windows)是另一个选择,他是GCC的WINDOWS移植。<BR> 可以到<A href="http://www.sourceforge.net/projects/mingw">http://www.sourceforge.net/projects/mingw</A>去下载.(和CYGWIN一样,安装的时候下载,但是要小的多)。</DIV> <DIV><BR>Cygwin<BR>======<BR>Cygwin is a Linux-like environment for Windows. It consists of two parts: <BR>A DLL (cygwin1.dll) which acts as a Linux API emulation layer providing substantial Linux API functionality. <BR>A collection of tools which provide Linux look and feel. <BR>The Cygwin DLL currently works with all recent, commercially released x86 32 bit and 64 bit versions of Windows, with the exception of Windows CE.<BR>1.首先安装cygwin(推荐用这个c/c++的编译环境),然后安装eclipse的cdt插件。 <BR>2.windows的dos提示符下先执行set CYGWIN=tty notitle glob 命令,而后执行set Path=d:\cygwin\bin;%Path%命令。注意x:\cygwin为cygwin的安装路径(我安装的事d盘)。或者直接加入到path环境变量下面。 <BR>3.进入eclipse,new一个managed make c++ project ,然后创建一个cpp文件,修改make command为make -f makefile,build后你就可以看到eclipse为你自动生成一个exe的binary文件了。</DIV> <DIV>NOTE:在通过setup.exe网络安装时一定要选择full install,而且软件很大一定要测试后选择较快的镜像点下载,尽量下载完成后再手动开始安装,否则总是有意想不到的问题出现。 </DIV> <DIV> </DIV> <DIV> </DIV> <DIV>minGW<BR>=====<BR>这也是一个解决办法,而且很好用。在windows平台上,安装这些工具需要下载minGW3.1.0.1。<BR>minGW是一个将GNU软件移植到windows下的项目.<BR>下载可在Windows下使用GNU C,C++编译器,如MinGWStudioFullSetup-2_05,下载后并安装它;<BR>当然也可以使用MinGW.下载网址:http://www.mingw.org/downloads.html.安装后先在开始->运行->cmd模式下测试编译和执行.先将C:\MinGWStudio\MinGW\bin下的mingw32-make.exe重命名为make.exe,因为Eclipse会用make.exe这个文件而不是mingw32-make.exe.(注:如果不更名或是还有其他make程序时,也可以在稍后的Eclipse设定中,在make targets view的地方,新增一个task时,build command取消use default,使用mingw32-make.exe及project properties->make project -> 将make改为mingw32-make) .环境变量设置要把MinGW的bin目录加入到path环境变量下面,然后重新启动eclipse,新建托管C++项目,包透视图项目里面有"include"就可. <BR>第四步:在环境变量里加入下列的设定: </DIV> <DIV> <HR id=null> </DIV> <H2>What is Eclipse?</H2> <DIV>When you use Eclipse or any IBM tool built on Eclipse (Websphere Studio Application Developer), you work in the Eclipse workbench using its features and all the "plugin" tools included. It has a generic set of development services that can be used by any plug-in tool and includes a built-in Java Development Tool plugin.<BR><BR></DIV> <H2>What is Eclipse-Plugins.info?</H2> <DIV>Find your plugin here.</DIV> <DIV> <DIV id=topbar> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD bgColor=#006699><IMG height=80 alt="eclipse plugins!" src="http://www.eclipse-plugins.info/eclipse/images/eclipse-plugin-logo.gif" width=175 border=0></TD> <TD width="100%" bgColor=#006699><IMG height=80 alt="" src="http://www.eclipse-plugins.info/eclipse/images/gradient.jpg" width=282 border=0></TD></TR></TBODY></TABLE> </DIV></DIV> <DIV></DIV>
查看全文
发表于:2007-10-18 ┆
阅读(559)
┆
评论(0)
Cygwin-GNU C,C++ Compiler
<DIV><A name=top><IMG height=70 alt="" src="http://cygwin.com/cygwin.jpg" width=600 useMap=#topbar border=0></A> <H3> <CENTER>What Is Cygwin?</CENTER></H3><FONT color=#ff0000>Cygwin is a Linux-like environment for Windows. It consists of two parts: </FONT> <LI><FONT color=#ff0000>A DLL (cygwin1.dll) which acts as a Linux API emulation layer providing substantial Linux API functionality. </FONT> <LI><FONT color=#ff0000>A collection of tools which provide Linux look and feel.</FONT> <P>The Cygwin DLL currently works with all recent, commercially released x86 32 bit and 64 bit versions of Windows, with the exception of Windows CE.</P> <P>Note that the official support for Windows 95, Windows 98, and Windows Me will be discontinued with the next major version (1.7.0) of Cygwin.</P> <H3> <CENTER>What Isn't Cygwin?</CENTER></H3> <LI>Cygwin is <B>not</B> a way to run native linux apps on Windows. You have to rebuild your application <EM>from source</EM> if you want it to run on Windows. <LI>Cygwin is <B>not</B> a way to magically make native Windows apps aware of UNIX ® functionality, like signals, ptys, etc. Again, you need to build your apps <EM>from source</EM> if you want to take advantage of Cygwin functionality. </LI></DIV> <P> <TABLE cellSpacing=1 cellPadding=1 width="45%" align=center border=0> <TBODY> <TR> <TD align=middle width="30%"><FONT size=-1><A href="http://www.cygwin.com/setup.exe"><IMG height=28 alt=Cygwin! src="http://www.cygwin.com/cygwin-icon.gif" border=0><BR><FONT color=#800080>Install or update<BR><B>now!</B></FONT></A><BR>(using setup.exe)</FONT></TD></TR></TBODY></TABLE></P> <CENTER> <H3>Installing and Updating Cygwin</H3></CENTER><! font size="-1"> <P>The latest net releases of the Cygwin DLL are numbered <I>1.n.x</I>, where "n" is currently "5" (e.g., 1.5.24). Any Cygwin program built from December 1998 onward should work correctly with 1.n.x DLLs.</P> <P>The <I>1.n.x</I> version numbering refers only to the Cygwin DLL. Individual packages like <EM>bash</EM>, <EM>gcc</EM>, <EM>less</EM>, etc. are released independently of the DLL. The <A href="http://www.cygwin.com/setup.exe"><FONT color=#800080>setup.exe</FONT></A> utility tracks the versions of all installed components and provides the mechanism for <B>installing</B> or <B>updating</B> everything available from this site for Cygwin. <P>Run <A href="http://www.cygwin.com/setup.exe"><FONT color=#800080>setup.exe</FONT></A> any time you want to update or install a Cygwin package.</P> <P>Note that, when installing packages for the first time, <TT><FONT face=新宋体>setup.exe</FONT></TT> <EM>does not install every package</EM>. Only the <B>minimal base packages</B> from the Cygwin distribution are installed by default. Clicking on categories and packages in the <TT><FONT face=新宋体>setup.exe</FONT></TT> package installation screen will provide you with the ability to control what is installed or updated. Clicking on the "Default" field next to the "All" category will provide you with the opportunity to install every Cygwin package. Be advised that this will download and install hundreds of megabytes to your computer. The best plan is probably to click on individual categories and install either entire categories or packages from the categories themselves.</P> <P>Once you've installed your desired subset of the Cygwin distribution, <TT><FONT face=新宋体>setup.exe</FONT></TT> will remember what you selected so rerunning the program will update your system with any new package releases.</P> <P><STRONG>NOTE:GNU C,C++ C<SPAN style="COLOR: #808080"><SPAN style="FONT-SIZE: 10pt; COLOR: #000000; LINE-HEIGHT: 1.2em">ompiler.</SPAN><SUP style="FONT-SIZE: 8pt; LINE-HEIGHT: 1em"></SUP> </SPAN></STRONG></P>
查看全文
发表于:2007-10-18 ┆
阅读(460)
┆
评论(0)
配置Eclpise+tomcat并实现JSP的编写与部署
<DIV>好东西值得收藏!!</DIV> <DIV>一. 下载 <BR>J2SDK下载 <BR><A href="http://java.sun.com/j2se/1.4.2/download.html" target=_blank><FONT color=#0000ff>http://java.sun.com/j2se/1.4.2/download.html</FONT></A> <BR>下载版本是j2sdk-1_4_2_08 <P></P> <P>ECLIPSE下载 <BR><A href="http://www.eclipse.org/downloads/index.php" target=_blank><FONT color=#0000ff>http://www.eclipse.org/downloads/index.php</FONT></A> <BR>下载版本是eclipse-SDK-3.0.2-win32 </P> <P>ECLIPSE 插件下载 <BR>中文包: <BR><A href="http://sunsite.informatik.rwth-aachen.de/eclipse/downloads/drops/L-3.0.1_Translations-200409161125/NLpack-eclipse-SDK-3.0.x-win32.zip" target=_blank><FONT color=#0000ff>http://sunsite.informatik.rwth-aachen.de/eclipse/downloads/drops/L-3.0.1_Translations-200409161125/NLpack-eclipse-SDK-3.0.x-win32.zip</FONT></A> <BR>Tomcat插件Sysdeo Eclipse Tomcat Launcher plugin: <BR><A href="http://www.sysdeo.com/sysdeo/eclipse/tomcatplugin" target=_blank><FONT color=#800080>http://www.sysdeo.com/sysdeo/eclipse/tomcatplugin</FONT></A> </P> <P>TOMCAT下载 <BR><A href="http://jakarta.apache.org/site/downloads/downloads_tomcat-5.cgi" target=_blank><FONT color=#0000ff>http://jakarta.apache.org/site/downloads/downloads_tomcat-5.cgi</FONT></A> <BR>下载版本是jakarta-tomcat-5.0.28 </P> <P>二. 安装 <BR>1. 先安装j2sdk <BR>我安装路径是:D:\Program Files\Java\j2sdk </P> <P>2. 再安装eclipse <BR>Eclipse是绿色软件,不需要安装,把下载回来的eclipse压缩包解压就可以了 <BR>我安装的路径是:D:\Program Files\Java\eclipse </P> <P>3. 安装tomcat <BR>下载回来的是一安装文件,按照安装提示进行就可以了 <BR>我安装的路径是:D:\Program Files\Java\Tomcat </P> <P>4. 安装eclipse插件 <BR>中文包 <BR>直接将压缩包NLpack-eclipse-SDK-3.0.x-win32内features和plugins两文件夹内的内容解压到eclipse文件夹内同名文件夹就可以了 <BR>Tomcat插件 <BR>将压缩包tomcatPluginV3解压,把plugins文件夹内的内容解压到eclipse文件夹内同名文件夹就可以了 </P> <P>三. 环境配置 <BR>1. 系统环境变量配置 <BR>右击“我的电脑”->高级->环境变量, <BR>设置JAVA_HOME变量指向其安装的目录“D:\Program Files\Java\j2sdk”; <BR>TOMCAT_HOME变量指向其安装的目录“D:\Program Files\Java\Tomcat”; <BR>PATH变量中含有“%JAVA_HOME%\bin;”; <BR>CLASSPATH变量含有“%JAVA_HOME%\lib\tools.jar;”; </P> <P>2. eclipse中java运行环境的配置 <BR>在eclipse主窗口中,“窗口”->首选项->java->已安装的JRE,选我们已经安装的j2sdk </P> <P>3. 配置Sysdeo Tomcat 插件 <BR>在eclipse主窗口中,“窗口”->首选项->tomcat,tomcat version 选 version 5.x(我们安装的版本),tomcat home 处填我们安装tomcat的路径,这里就是D:\Program Files\Java\Tomcat。 <BR>切换到Advanced选项,在tomcat base处再填我们安装tomcat的路径,这里就是D:\Program Files\Java\Tomcat。 <BR>切换到JVM Setting选项,确定jre是你已经安装的j2sdk版本,我们这里选j2sdk。 <BR>切换到Tomcat Manger App,为管理界面增加一个用户。 <BR>最后按应用按钮,然后在确定。 <BR>检查配置是否成功,只需在eclipse主窗口中,按tomcat运行按钮,然后在浏览器里的地址栏里输入<A href="http://localhost:8080/,如果出现tomcat" target=_blank><FONT color=#0000ff>http://localhost:8080/,如果出现tomcat</FONT></A> 的页面,那就证明配置成功了。 </P> <P>四. 编写程序 <BR>1.创建一个Tomcat项目 <BR>右击“包资源管理器”窗口中的空白处,新建->Tomcat Project, 在项目名中填写项目名字,在这里我填tomcat_test,点击“完成”即可。 </P> <P>2.创建一个JSP页面 <BR>在包资源管理器中,右击“tomcat_test”,新建->文件, 在文件名中填写HelloWorld.jsp(扩展名不能缺),在文本编辑窗口输入如下代码: <BR><html> <BR><head> <BR></head> </P> <P><body> <BR><h1>Hello World</h1> <BR></body> </P> <P></html> </P> <P>然后保存。 </P> <P>3. 点击“运行tomcat”按钮 </P> <P>4. 如果一切正常,在浏览器窗口中输入<A href="http://localhost:8080/tomcat_test/HelloWorld.jsp" target=_blank><FONT color=#0000ff>http://localhost:8080/tomcat_test/HelloWorld.jsp</FONT></A> </P> <P>浏览器就会显示“Hello World” </P> <P>五. 部署JSP页面 <BR>这里的部署我使用比较简单的方法:首先,把上述放在eclipse的workpalce目录的tomcat_test目录拷到tomcat目录下的webapps目录里,然后对conf目录里的server.xml进行文本编辑,在</engin>前加入如下host元素: <BR><Host name="*.*.*.*" debug="0" appBase="webapps" <BR>unpackWARs="true" autoDeploy="true"> <BR></Host> <BR>然后保存,接着启动tomcat,那样只要你在浏览器窗口中输入<A href="http://*.*.*.*:8080/tomcat_test/HelloWorld.jsp" target=_blank><FONT color=#0000ff>http://*.*.*.*:8080/tomcat_test/HelloWorld.jsp</FONT></A> <BR>浏览器就会显示“Hello World” <BR>这样说明你的jsp页面部署发布成功,别人就能在网上访问你的页面了 <BR>(PS :*.*.*.*是指安装了tomcat服务器的主机IP地址) </P> <P>六. 几点说明 <BR>(1)选j2sdk而不是jre,是因为j2sdk除了有java的运行环境还有java程序所需要的类,而jre只有运行环境。 <BR>(2)由于软件本身升级比较频繁,经常需要重新设置使用的环境变量或者重新配置,例如把JDK版本从1.3升级到1.4,即JDK目录名可能要从“j2sdk1.3”改为“j2sdk1.4”,如果是这样的话,那么eclipse可能会无法再启动了(它要从环境变量中寻找JAVA_HOME变量,而JAVA_HOME变量值已经从“j2sdk1.3”改为“j2sdk1.4”了)。同理, jakarta-tomcat这个软件升级比较频繁,现在结合eclipse来使用Tomcat的,那么每次Tomcat升级,可能都要在eclipse中重新设置一下Tomcat的安装目录。如果按照传统的安装方法,我们每次升级软件都要进行设置或配置,这样非常麻烦。对于此类问题,解决的方法很简单,只要把默认的软件安装目录名去掉版本号即可(如果担心忘记版本号,只要在目录中添加一个readme文件加以说明即可)。上述的安装过程就使用了这种方法。 </P></DIV>
查看全文
发表于:2007-04-19 ┆
阅读(481)
┆
评论(0)
SWT Designer 安装与破解(最新整理)
<DIV> <P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: red; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma">SWT-Designer</SPAN></B><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-bidi-font-family: Tahoma">是一个</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma">Eclipse </SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-bidi-font-family: Tahoma">的</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma"> SWT GUI </SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-bidi-font-family: Tahoma">开发插件包,支持组件拖拉操作。目前</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma"> </SPAN></P> <P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma">SWT Designer </SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-bidi-font-family: Tahoma">最新版是</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma"> <STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma">4.3.1</SPAN></STRONG></SPAN><STRONG><SPAN style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-bidi-font-family: Tahoma">,</SPAN></STRONG><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana">作为<SPAN style="COLOR: black">一个</SPAN></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana">Eclipse</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana">的插件,用来使用</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana">SWT</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana">开发用户界面。</SPAN></P> <P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana"></SPAN> </P> <P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana"></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-hansi-font-family: 宋体"><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p>这里是我整理得关于<SPAN><A href="http://blog.csdn.net/diven_net/archive/2006/09/16/1232048.aspx"><SPAN style="COLOR: black; TEXT-DECORATION: none; text-underline: none">SWT Designer </SPAN><SPAN lang=EN-US style="COLOR: black; FONT-FAMILY: 宋体; TEXT-DECORATION: none; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana; text-underline: none"><SPAN lang=EN-US>安装与破解</SPAN></SPAN></A>的学习日记。提供给JFans共享下载。。</SPAN></o:p></SPAN></P> <P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-hansi-font-family: 宋体"><o:p><SPAN></SPAN></o:p></SPAN> </P> <P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-hansi-font-family: 宋体"><o:p><SPAN> <TABLE style="BORDER-COLLAPSE: collapse" borderColor=#dddddd cellSpacing=0 cellPadding=0 width=360 align=center border=1> <TBODY> <TR height=60> <TD align=middle width=60><IMG alt="" src="http://control.cublog.cn/fileicon/pdf.gif" border=0></TD> <TD> <TABLE style="BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR height=20> <TD align=middle width=40>文件:</TD> <TD>SWT-Designer安装与破解.pdf</TD></TR> <TR height=20> <TD align=middle width=40>大小:</TD> <TD>172KB</TD></TR> <TR height=20> <TD align=middle width=40>下载:</TD> <TD><A href="http://blogimg.chinaunix.net/blog/upfile/070315174417.pdf">下载</A></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></SPAN></P></o:p></SPAN></DIV> <DIV></DIV>
查看全文
发表于:2007-03-15 ┆
阅读(1178)
┆
评论(1)
SWT Designer 安装
<DIV> <HR id=null> </DIV> <DIV> <P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><B><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana"><A href="http://blog.csdn.net/diven_net/archive/2006/09/16/1232048.aspx"><SPAN style="COLOR: black">SWT Designer </SPAN><SPAN lang=EN-US style="COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><SPAN lang=EN-US>安装</SPAN></SPAN></A></SPAN></B></P> <P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana"><STRONG> </STRONG> 体验了Eclipse的强大功能后,马上体验一下他的</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana"><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: red; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体"><STRONG>SWT-Designer。</STRONG><FONT color=#000000>她</FONT></SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-bidi-font-family: Tahoma; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><FONT color=#000000>是</FONT>一个</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">Eclipse </SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-bidi-font-family: Tahoma; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">的</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体"> SWT GUI </SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-bidi-font-family: Tahoma; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">开发插件包,支持组件拖拉操作。以下是我</SPAN></SPAN><FONT face=宋体><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">下载安装过程贴出来分享一下~~<IMG src="http://www.cublog.cn/images/face/019.gif"></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></FONT></P> <P style="BACKGROUND: white"><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><1> </SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>从</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><A href="http://www.swt-designer.com/"><FONT color=#800080>www.swt-designer.com</FONT></A></SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>中左边窗口中点</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana">Download,</SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>选择</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana">eclipse</SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>对应的版本下载</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana">.</SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>我下载的是</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana">Designer_v6.2.0_for_Eclipse3.2.zip</SPAN><FONT face=宋体><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">。</SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><o:p></o:p></SPAN></FONT></P> <P style="BACKGROUND: white"><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><2> </SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>解压</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana">Designer_v6.2.0_for_Eclipse3.2.zip</SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>,你会看到</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana">2</SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>个文件夹</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana">features</SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>和</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana">plugins,</SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>复制其文件夹下的文件到</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana">eclipse</SPAN><FONT face=宋体><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">对应的文件夹中。</SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><o:p></o:p></SPAN></FONT></P> <P style="BACKGROUND: white"><SPAN lang=EN-US style="COLOR: red; FONT-FAMILY: Verdana"><3></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana"> </SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>删除</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana">eclipse</SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>中文件夹</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana">configuration</SPAN><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><FONT face=宋体>中除</FONT></SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana">config.ini</SPAN><FONT face=宋体><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">外的所有文件。</SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><o:p></o:p></SPAN></FONT></P> <P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-layout-grid-align: none" align=left><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">关于安装时注意事项网站中提示如下:</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt"><o:p></o:p></SPAN></P> <P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-layout-grid-align: none" align=left><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt"><SPAN style="mso-spacerun: yes"> </SPAN>If you are installing into Eclipse 3.0, you should also delete your Eclipse/configuration directory before re-starting Eclipse (it is recreated at startup). This is to avoid a common Eclipse 3.x plugin cache bug. </SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ansi-language: ZH-CN">The Full Installer can do this for you automatically. <o:p></o:p></SPAN></P> <P style="BACKGROUND: white"><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><SPAN style="mso-spacerun: yes"> </SPAN>If you are installing into Eclipse 3.1, 3.2 or 3.3, delete everything in the "configuration" directory except the config.ini file and the org.eclipse.update/platform.xml file (Eclipse 3.2 and above). You should also keep your org.eclipse.update/bookmarks.xml file (Eclipse 3.1 and above) in order to preserve your update site bookmarks</SPAN><FONT face=宋体><SPAN style="mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">。</SPAN><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><o:p></o:p></SPAN></FONT></P> <P style="BACKGROUND: white"><SPAN lang=EN-US style="COLOR: red; FONT-FAMILY: Verdana"><4></SPAN><STRONG><SPAN style="FONT-WEIGHT: normal; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Tahoma; mso-bidi-font-family: Tahoma">重新启动</SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma"> eclipse</SPAN></STRONG><STRONG><SPAN style="FONT-WEIGHT: normal; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Tahoma; mso-bidi-font-family: Tahoma">,选择</SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma">“</SPAN></STRONG><STRONG><SPAN style="FONT-WEIGHT: normal; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Tahoma; mso-bidi-font-family: Tahoma">窗口</SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-bidi-font-family: 宋体">→</SPAN></STRONG><STRONG><SPAN style="FONT-WEIGHT: normal; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Tahoma; mso-bidi-font-family: Tahoma">首选项</SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma">”</SPAN></STRONG><STRONG><SPAN style="FONT-WEIGHT: normal; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Tahoma; mso-bidi-font-family: Tahoma">,如果有</SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: Tahoma"> Designer </SPAN></STRONG><STRONG><SPAN style="FONT-WEIGHT: normal; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Tahoma; mso-bidi-font-family: Tahoma">一项证明安装成功了。</SPAN></STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><o:p></o:p></SPAN></P></DIV> <DIV></DIV> <DIV></DIV>
查看全文
发表于:2007-03-15 ┆
阅读(1150)
┆
评论(0)
Eclipse中文化
<P>刚刚把Eclipse中文化了一下,过程写下来和大家分享!</P> <P>我Eclipse的版本是3.2.1。</P> <P><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">1.</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">到</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt"><FONT color=#000080><A href="http://www.eclipse.com">www.eclipse.com</A></FONT><SPAN lang=EN-US style="COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><SPAN lang=EN-US>网站下载适合我的</SPAN></SPAN><SPAN style="COLOR: black">eclipse</SPAN></SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">版本的</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ascii-font-family: Verdana">中文汉化包。</SPAN></P> <P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align=left><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ascii-font-family: Verdana"></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">NLpack1-eclipse-SDK-3.2.1-win32.zip</SPAN></P> <P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align=left><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">>Eclipse Language Pack</SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana; mso-ansi-language: ZH-CN">语言补丁包</SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">:</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">NLpack1 - German, Spanish, French, Italian, Japanese, Korean, Portuguese (<?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:place w:st="on"><st1:country-region w:st="on">Brazil</st1:country-region></st1:place>), Traditional Chinese and <SPAN style="COLOR: red">Simplified Chinese</SPAN><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></P> <P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align=left><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-hansi-font-family: 宋体"></SPAN> </P> <P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align=left><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-hansi-font-family: 宋体">2.</SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana">解压</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">NLpack1-eclipse-SDK-3.2.1-win32.zip</SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana">,看到</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana">2</SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana">个文件夹</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana">features</SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana">和</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana">plugins,</SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana">复制其文件夹下的文件到</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana">eclipse</SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana">对应的文件夹中。</SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #666699; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt"><o:p></o:p></SPAN></B></P> <P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align=left><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt"></SPAN> </P> <P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align=left><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">3.</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ascii-font-family: Verdana">在桌面的快捷方式后面加上参数即可,英文</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">-> -nl "zh_US"</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ascii-font-family: Verdana">繁体</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">-> -nl "zh_TW"</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ascii-font-family: Verdana">简体</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">-> -nl "zh_CN"</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ascii-font-family: Verdana">。</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">(</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt; mso-ascii-font-family: Verdana">其它语系以此类推</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-font-kerning: 0pt">)<o:p></o:p></SPAN></P> <P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align=left><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-bidi-font-family: Arial; mso-ascii-font-family: Verdana"></SPAN> </P> <P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align=left><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-bidi-font-family: Arial; mso-ascii-font-family: Verdana"> 请注意下载的</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-family: Arial">eclipse<FONT face=宋体>语言包</FONT></SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-bidi-font-family: Arial; mso-ascii-font-family: Verdana">版本与你使用得Eclipse版本一致</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-family: Arial">,Eclipse 3.2.1</SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-bidi-font-family: Arial; mso-ascii-font-family: Verdana">多国语言包要与</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-family: Arial">eclipse3.2.1</SPAN><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 宋体; mso-bidi-font-family: Arial; mso-ascii-font-family: Verdana">对应</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-family: Arial">.</SPAN></P> <P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align=left><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-family: Arial"></SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-ascii-font-family: Verdana; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"> 我的</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-hansi-font-family: 宋体; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">Eclipse</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-ascii-font-family: Verdana; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">是</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-hansi-font-family: 宋体; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">3</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">.2.1</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">版本,上述操作后</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-ascii-font-family: Verdana; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">修改我桌面的</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">Eclipse</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-ascii-font-family: Verdana; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">快捷方式的属性中加入参数</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">-nl "zh_CN"</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-ascii-font-family: Verdana; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">。如下</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: Verdana; mso-bidi-font-family: 宋体; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">"C:\eclipse\eclipse.exe" -n "zh_US"</SPAN><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-ascii-font-family: Verdana; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">。重新起动可以看到中文化的界面了。</SPAN></P> <P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align=left><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-ascii-font-family: Verdana; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"></SPAN> </P> <P class=MsoNormal style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align=left><SPAN style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 宋体; mso-bidi-font-family: 宋体; mso-ascii-font-family: Verdana; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"> 哈哈~~幸福感就别提啦!感觉Eclispe太优秀了,连汉化都是插件方式的,正应了那句话。Eclipse只是一个语言开发框架平台,一切都是插件。</SPAN></P> <DIV></DIV> <DIV></DIV> <DIV></DIV>
查看全文
发表于:2007-03-12 ┆
阅读(728)
┆
评论(0)