Eclipse工具使用问题及解决方案汇总

1.导入项目

jre(unbound)

tomcat(unbound)

右键项目-->Properties-->Java Build Path,选中报错项点Edit编辑。

Eclipse工具使用问题及解决方案汇总

2.Eclipse删除tomcat server导致不能重新创建该版本的tomcat server

打开工程目录下的.metadata\.plugins\org.eclipse.core.runtime\.settings文件夹,删除org.eclipse.wst.server.core.prefs和org.eclipse.jst.server.tomcat.core.prefs这两个文件,再重启eclipse。

3.Eclipse中修改SVN用户名和密码的方法

查看Eclipse用的是什么SVN Interface

windows > preference > Team > SVN #SVN Interface右侧中下方

如果是用的JavaHL,找到以下目录删除auth目录下的文件

Windows 7
C:\Users\"你的用户名"\AppData\Roaming\Subversion\auth\
XP
C:\Documents and Settings\"你的用户名"\Application Data(隐藏文件夹)\"Subversion\auth" 

如果你用的SVNKit, 找到以下目录并删除.keyring文件
[eclipse ]"configuration"org.eclipse .core.runtime
 

4.项目添加jar包

将jar包添加到项目文件夹中,右键项目->Properties->Java Build Path添加。

Eclipse工具使用问题及解决方案汇总

5.SVN提交代码时遇到 org.apache.subversion.javahl.ClientException: Attempted to lock an already-locked dir,"SVN 客户端异常:试图锁定一个已经锁定的目录"。

使用 SVN 插件时,选中能包含所有待提交代码的最小的包(直接选择工程也可以),右键选择 Team > Refresh/Cleanup ,再进行提交操作(前提是具备有效的SVN仓库联接)就可以了。

6.Eclipse修改编码格式

修改默认编码

Window--Preferences--General--Workspace

修改文件的编码

项目文件右键,选择Properties,在Resource先择修改编码格式

修改某文件类型的编码

有时候需要某种类型的文件,如:*.jsp,*.java等

Window--Preferences--General--Content Types,右边找到要修改的文件类型,在底下的default encoding中输入utf-8,点update

修改单个文件的编码
文件右键--属性--改变编码