Eclipse重新设置workspace
Window—>Preferences—>General—>Startup and Shutdown—>Workspaces—>选中Prompt for workspace on startup
Eclipse修改jsp的默认编码
Window—>Preferences->Web->JSP Files->Encoding
Eclipse修改字体大小
Window—>Preferences—>General->Appearance->Colors and Font->Basic->Text Font
eclipse修改工作空间的默认编码
Window—>Preferences—>General->Workspace->右侧Text file encoding
eclipse有错误不显示红叉
整个环境修改
window->preferences->java->compiler->building->build path problems–>选中abort Incomplete build path/Circular dependencies 这两个选项修改为Warning
eclipse不显示referenced libraries
引用的第三方Jar 没有放在referenced libraries 目录下,没注意一个细节,即Project Explorer与Package Explorer的区别,在Package Explorer窗口中会出现Referenced Libraries,但Java EE 透视图中默认左边只有Project
Explorer窗口。因此只要打开Package Explorer窗口即可,打开方法:菜单Window->Show View->Other->Java->Package Explorer ,如果Package Explorer窗口中仍不见Referenced Libraries目录,则可以点击Package Explorer窗口右上角的倒三角箭头,在弹出的菜单中选择“Show ‘Referenced Libraries’ Node.”
Eclipse的工作空间
Eclipse的工作空间.metadata.pluginsorg.eclipse.wst.server.core目录,修改目录内文件server.xml
sun.misc.BASE64Encoder找不到jar包的解决方法
后来想起当时这个项目是发布在tomcat7.0下面的, 也就是说当时这个项目buildpath下"add library->Server runtime是tomcat7.0,而现在我给这个项目添加的server runtime是tomcat 6.0,所以会出现这样的错误。当我改了server runtime为tomcat
7.0以后就没有报错了。
1.右键项目-》属性-》java bulid path-》jre System Library-》access rules-》resolution选择accessible,下面填上** 点击确定即可!!!
2.在MyEclipse中编写Java代码时,用到了BASE64Decoder,import sun.misc.BASE64Decoder;可是Eclipse提示:
Access restriction: The type BASE64Decoder is not accessible due to restriction on required library C:Program filesjavajre6lib
t.jar
Access restriction : The constructor BASE64Decoder() is not accessible due to restriction on required library
C:Program filesjavajre6lib
t.jar
解决方案1(推荐):
只需要在project build path中先移除JRE System Library,再添加库JRE System Library,重新编译后就一切正常了。
解决方案2:
Windows -> Preferences -> Java -> Compiler -> Errors/Warnings ->
Deprecated and trstricted API -> Forbidden reference (access rules): -> change to warning
eclipse下使用Ant的scp
Window—>Preferences—>Ant–>RunTime–>ClassPath–>Ant Home Entries(Default)下添加jsch-xxx.jar
右侧:Add JARs–>选择jsch-xxxx.jar eclipse即能完美支持scp
Eclipse 自定义代码格式
Window—>Preferences—>java–>Code Style–>Fomatter–>选中想要编辑的代码类型,比如my–>edit…进行编辑
Eclipse中build.xml运行Ant Build控制台没有输出的解决方法
右键build.xml文件Run as里选择External Tools Configuration…,在Main标签下的Arguments输入框内输入-logger org.apache.tools.ant.NoBannerLogger,然后点击Run 按钮即可解决Console控制台无输出的问题。
eclipse下ant无法使用
Eclipse(我的是3.3版本的),Windows–>preferences–>Ant–>runtime–>classpath–>Ant home Entires–>add External jar
Could not find the main class: org.eclipse.ant.internal.launching.remote.InternalAntRunner. Program will exit.
选中了一个单词 “String” ,其他相同的单词“String” 的颜色就会变化
"Window"-“preferences”-“Java”-“Editor”-"Mark Occurrences"复选框勾选
共同学习,写下你的评论
评论加载中...
作者其他优质文章