如何导入eclipse中尚未出现的类

时间:2014-06-02 06:50:51

标签: java eclipse

我正在使用eclipse IDE- Android Developer工具Build:v22.6.2- 108550

我必须运行程序

import org.eclipse.gef4.dot.DotExport;    
import org.eclipse.gef4.dot.DotImport;    
import org.eclipse.gef4.graph.Graph;    
import org.eclipse.gef4.zest.core.widgets.GraphWidget;    
import org.eclipse.swt.SWT;    
import org.eclipse.swt.layout.FillLayout;    
import org.eclipse.swt.widgets.Display;    
import org.eclipse.swt.widgets.Shell;

public class SampleUsage {

 public static void main(String[] args) {

   Shell shell = new Shell();

   Graph graph = new DotImport(

        "digraph{ "    
        + "node[label=zested]; edge[style=dashed]; "    
        + "1->2; 2->3; 2->4; 3->5; 4->6 "    
        +"}").newGraphInstance();

   open(graph, shell);

   System.out.println(new DotExport(graph).toDotString());

 }

 private static void open(Graph graph, final Shell shell) {

   new GraphWidget(graph, shell, SWT.NONE);

   shell.setText(Graph.class.getSimpleName());    
   shell.setLayout(new FillLayout());    
   shell.setSize(600, 300);    
   shell.open();

   Display display = shell.getDisplay();

   while (!shell.isDisposed())

     if (!display.readAndDispatch())

       display.sleep();

   display.dispose();

 }

}

但公共类SampleUsage上面的所有导入命令都有错误,或者我们可以说红色灯泡带有它们意味着这些包不存在,错误是The import org.eclipse cannot be resolved。如何将这些包导入我的IDE以运行此程序?如果你能告诉我这些包裹的位置,那就太棒了。

2 个答案:

答案 0 :(得分:0)

您可以通过右键单击项目 - >在日食中添加jar。构建路径 - >配置构建路径。在“库”选项卡下,单击“添加JAR”或“添加外部JAR”并为Jar提供。

答案 1 :(得分:0)

嗯,看起来您必须通过选项2,但有时候如果您必须导入现有项目,选项1将对您有所帮助。

选项1:

  1. 在日食中导入现有项目:点击文件>导入,然后选择要导入的项目。如果eclipse显示错误,则单击它并选择手动导入项目选项。如果再次显示问题,请单击项目>清除所有项目。清洁即可。
  2. 选项2:

    1. 在日食中添加jar 。步骤:点击项目> BuildPath>配置构建路径。然后单击AddJars并选择jar存在的位置。
    2. 感谢。