Java Swing Mac OSX 首选项菜单
我正在尝试将“首选项”菜单添加到我的 Java Swing 应用程序中,但事实证明它有点令人作呕。
我读过很多关于此的帖子和文章,听起来很简单,但是...
我在找到的示例中看到对 com.apple.eawt.Application 的引用,但是当我尝试将其导入 < strong>Eclipse Indigo 我收到错误:
访问限制:由于所需库 /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar 的限制,无法访问类型应用程序
有什么想法吗?
我正在使用 iMac OSX 10.6
I'm trying to add the Preferences menu to my Java Swing application and it's proving a bit of a nause.
I have read many posts and articles on this and it sounds easy but...
I see references to com.apple.eawt.Application in the examples I have found but when I try to import it in Eclipse Indigo I get an error:
Access restriction: The type Application is not accessible due to restriction on required library /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar
Any ideas?
I am working on an iMac OSX 10.6
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以使用
OSXAdapter
,它“使用反射代理模型来挂钩现有的首选项、关于和退出功能。”另请参阅此答案。You might be able to use
OSXAdapter
, which "uses a reflection proxy model to hook existing preferences, about, and quit functionality." See also this answer.