我有以下问题。
我有一个基于OSGI的应用程序,我需要使用库org.chromiunm.debug.ui。我将此库和所有相关库添加到目标平台。
我想在org.chromium.sdk.ui.launcher包中使用此库的类。为此,我在行后添加了清单文件:
Import-Package: org.chromium.debug.ui
在eclipse开发期间,这个类是正确可见的,我可以使用它。但是在第一次访问的运行时,我收到了一个错误:
java.lang.NoClassDefFoundError:org / chromium / debug / ui / launcher / WipLaunchType
可能出现的问题是什么?
答案 0 :(得分:1)
Java中的包不是嵌套的...... org/chromium/debug/ui/launcher/WipLaunchType
是org.chromium.debug.ui.launcher.WipLaunchType
,它是包WipLaunchType
中的类org.chromium.debug.ui.launcher
导入org.chromium.debug.ui
不包含子包,因为您没有导入org.chromium.debug.ui.launcher
,因此您在课程WipLaunchType
上收到错误...
如果您使用过bnd(工具),则不必指定此导入,因为bnd会从您的类文件中计算出来...