怎么初始化eclipse设置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么初始化eclipse设置相关的知识,希望对你有一定的参考价值。
现在我电脑上面的eclipse很明显的错误左边都没有错误显示了,在控制台也运行不出东西了
打开Eclipse安装目录下的configuration文件夹,删除当中的所有目录,只保留config.ini文件和org.eclipse.equinox.simpleconfigurator目录(如果你的Eclipse有这个目录的话),重启Eclipse 参考技术A 打开Eclipse安装目录下的configuration文件夹,删除当中的所有目录,只保留config.ini文件和org.eclipse.equinox.simpleconfigurator目录(如果你的Eclipse有这个目录的话),重启Eclipseeclipse的布局是可拖动了,有时候不小心拖动了之后,死活弄不回来。好在现在版本的eclipse都提供了一个恢复默认布局的功能:Window->ResetPerspective 参考技术B 方法如下:
1、打开workspace文件夹。
2、找到.metadata文件夹。
3、删除.metadata文件夹。
4、启动Eclipse即可。
eclipse java小程序启动:未初始化
import acm.graphics.*;
import acm.program.*;
import java.awt.*;
public class Pyramid extends GraphicsProgram
/** Width of each brick in pixels */
private static final int BRICK_WIDTH = 30;
/** Width of each brick in pixels */
private static final int BRICK_HEIGHT = 12;
/** Number of bricks in the base of the pyramid */
private static final int BRICKS_IN_BASE = 14;
public void run()
getWidth();
getHeight();
int halfwidth = getWidth()/2;
int height = getHeight();
GRect initrect = new GRect(halfwidth,(height-(BRICKS_IN_BASE-1)),BRICK_WIDTH,BRICK_HEIGHT);
add(initrect);
for(int i=1; i<14; i++)
for(int j=0;j<i+1;j++)
GRect rect = new GRect((halfwidth-BRICK_WIDTH/2+j*BRICK_WIDTH),(height-(BRICKS_IN_BASE-i)),BRICK_WIDTH,BRICK_HEIGHT);
add(rect);
Pyramid pr = new Pyramid();
pr.run();
参考技术C where is the main method
以上是关于怎么初始化eclipse设置的主要内容,如果未能解决你的问题,请参考以下文章