红联Linux门户
Linux帮助

将linux下用ant组织的java项目迁移到windows下eclipse环境的一些心得

发布时间:2008-02-29 00:37:30来源:红联作者:turning
这些东西没有什么技术含量。但是IDE有IDE的好处,就导入进去。配置上遇到了一些问题,解决办法如下:

1.subclipse安装
help->software update->find and install->new remote site,添加“http://subclipse.tigris.org/update”->选中所需安装即可

2.如果是ant的build.xml组织的项目,可以不建立java的run dialog,直接把ant拖过来使用。

3.ant使用javac编译提示“unable to find a javac compiler”以及没有“com.sun.tools.javac.Main”
方法一:将tools.jar拷贝至eclipse\plugins\org.apache.ant_xxxxxx\lib下
方法二:preference中设置ant的runtime参数,见

4.源代码编辑中文乱码问题
因为项目是从linux下建的,其中的中文都是utf8编码,这边的eclipse用了默认的系统编码gb18030因此乱码。解决办法project->property->resource->text file encoding设为utf8

5.ant中run时console输出乱码问题
源码编译时应当显式指定encoding为utf8,例如

6.ant中javadoc无法使用的问题
A solution reported to eclipse.org is to add the directory location of the javadoc executable (e.g. /bin) to your PATH environment variable. 另外,注意javadoc也要配置好encoding参数

7.debug ant的run
暂时没有简便的方法

8.eclipse的jre配置
目前eclipse的jre设置很奇怪,默认设置为 jre_xxx目录,建议更换为 jdk_xxx目录。

9.导入项目的忠告
一定要使用项目配置向导,直接Import文件夹会造成很多麻烦。
文章评论

共有 0 条评论