在 Netbeans 6.8 中找不到 org.netbeans 包
我在 ubuntu 9.10 上安装了带有 java ME 平台的 netbeans 6.8。
我的代码需要包org.netbeans.microedition.lcdui,它要么未安装,要么不在路径中。 令人惊讶的是,它在我朋友电脑上的 windows 上的 netbeans 6.8 中完美运行。
我需要安装什么 java ME 插件吗?
有人可以帮我解决这个问题吗?
提前致谢。
I have netbeans 6.8 with java ME platform setup on my ubuntu 9.10.
My code requires the package org.netbeans.microedition.lcdui which is either not installed or not in the path.
Surprising this runs perfectly in netbeans 6.8 on windows on my friend's pc.
Is there any java ME plugin I need to install?
Can somebody help me out with this?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您的 NB 安装中由于某种原因缺少
netbeans_midp_components_basic.jar
。尝试从您朋友的 PC 上获取 netbeans_midp_components_basic.jar(位于
[NetBeansRoot]/mobility8/modules/ext
下),并将其放入您自己安装的同一路径中。或者将其添加到项目的构建路径中。如果文件
netbeans_midp_components_basic.jar
丢失,其他一些文件也可能丢失,这将导致出现问题。因此,我建议更好的方法是重新安装,仔细检查您是否获得了与移动包捆绑在一起的 NB6.8。Sounds like
netbeans_midp_components_basic.jar
is missing from your NB install for some reason.Try get netbeans_midp_components_basic.jar off your friend's PC (under
[NetBeansRoot]/mobility8/modules/ext
) and put it in your own install in the same path. Or add it to your project's build path.If the file
netbeans_midp_components_basic.jar
is missing, some others might be missing too which will cause problems down the line. So a better way I'd suggest a reinstall, double checking that you get the NB6.8 that's bundled with the mobility pack.