我正在使用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以运行此程序?如果你能告诉我这些包裹的位置,那就太棒了。
答案 0 :(得分:0)
您可以通过右键单击项目 - >在日食中添加jar。构建路径 - >配置构建路径。在“库”选项卡下,单击“添加JAR”或“添加外部JAR”并为Jar提供。
答案 1 :(得分:0)
嗯,看起来您必须通过选项2,但有时候如果您必须导入现有项目,选项1将对您有所帮助。
选项1:
选项2:
感谢。