I have a Java applet that will consist of several popup menus that the user will have to interact with. However, the JPopupMenu won't show up when added. Here is my code:

public class Parser extends JApplet implements ActionListener {
    private static final long serialVersionUID = 1L;
    JPopupMenu deviceMenu;
    JButton downloadButton;
    Map <String, Object> deviceDict;

    public void init () {
        try {
            SwingUtilities.invokeAndWait(new Runnable() {
                public void run() {
                    createGUI();
                }
            });
        } 
        catch (Exception e) { 
            System.err.println("createGUI didn't successfully complete");
        }
    }
    public void createGUI() {
        try {
            URL url = new URL("[URL]");
            URLConnection conn = url.openConnection();
            BufferedReader in = new BufferedReader(
                                    new InputStreamReader(
                                    conn.getInputStream()));
            String inputLine;
            String xml = "";
            while ((inputLine = in.readLine()) != null) 
                xml = xml + inputLine;
        deviceDict = Plist.fromXml(xml);
        System.out.print(deviceDict);
        } 

        catch (XmlParseException e) {
            e.printStackTrace();
        } 
        catch (IOException e) {
            e.printStackTrace();
        }
        setLayout(new FlowLayout());
        setPreferredSize(new Dimension(480, 360));
        setSize(480, 360);
        Iterator <String> deviceIterator = deviceDict.keySet().iterator();
        deviceMenu = new JPopupMenu("Test");
        while (deviceIterator.hasNext()) {
            JMenuItem item = new JMenuItem(deviceIterator.next());
            deviceMenu.add(item);
        }
        add(deviceMenu);
    }
}

Any ideas why?

link|improve this question

2  
use JComboBox, not JPopupMenu – MeBigFatGuy May 15 '11 at 0:03
feedback

2 Answers

When do you want it to show up?
You need to call show() if you want to display the popup menu.
See this example and the one from oracle site.

BTW - from your question it seems JDialog

link|improve this answer
I see. I was confused about what JPopupMenu actually does. If i want the kind of menu hat essentially has a button that when clicked displays a JPopupMenu, is there an Object for that or will I have to just make it be a button? – Jumhyn May 14 '11 at 21:31
If I get you right - You will need to create each of them using JMenuItem. – Binyamin Sharet May 14 '11 at 21:36
What I want is something that will represent like this: i.imgur.com/VCal4.png , where clicking on it will show the JPopupMenu. – Jumhyn May 14 '11 at 21:58
This one is called JComboBox. – Binyamin Sharet May 14 '11 at 22:02
show 11 more comments
feedback
up vote 0 down vote accepted

Had to use a JComboBox instead of JPopupMenu

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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