Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Jar,我已将其包含在我的项目中。
当我通过专门化全名从该项目中导入一个类时,因为org.eclipse.nebula.widgets.nattable.edit.editor.ICellEditor该类被很好地导入。
org.eclipse.nebula.widgets.nattable.edit.editor.ICellEditor
编写ICellEditor和执行“组织导入”不起作用。执行“Open Type”并键入ICellEditor找到正确的类,因此 Eclipse 知道这个 JAR amd 类;但没有显示“组织导入”类。
ICellEditor
有人知道可能是什么原因吗?
确保您的 jar 路径包含在CLASSPATH中。当您给出如下所示的完全限定名称时,不需要CLASSPATH 。(当您明确给出完整路径时)。
因此,如果您希望在 eclipse 中的导入正常工作:
因此,要么将此 jar 放在现有的 jar 目录中,要么确保将 jar 路径添加到CLASSPATH中。