Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I try to add a JMenuBar to my frame in Mac, it doesn't show up. I assume it's because JMenuBar isn't integrated into the Mac native method. So can anybody help me with the code that I can use to make my bar viewable?

share|improve this question
The menu bar should appear in the frame, until you set useScreenMenuBar using any of the approaches suggested. This example may help clarify exactly what isn't showing up where. – trashgod Apr 2 '12 at 10:20

3 Answers

up vote 3 down vote accepted

You can also set the apple.laf.useScreenMenuBar property to true in your Info.plist, as shown here.

share|improve this answer

Firstly it you need to tell the JVM to use the MenuBar like:

System.setProperty("apple.laf.useScreenMenuBar", "true");

Then in your JFrame set the menu bar like so:

frame.setJMenuBar(new MenuBar());
share|improve this answer
Didn't work. :/ – Shawn Shroyer Apr 1 '12 at 23:16
Instead of new MenuBar() place what your JMenuBar is called. And are you using the java version supplied by apple? – Dean Apr 1 '12 at 23:18
I know. I'm no noob at java; I just converted to Mac a week ago. And yeah, I am. – Shawn Shroyer Apr 1 '12 at 23:25

Add the following VM argument to the java call:

-Dapple.laf.useScreenMenuBar=true
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.