Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 777343
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T19:35:30+00:00 2026-05-14T19:35:30+00:00

I had made one Java Swing based application. On my application,if i click anywhere

  • 0

I had made one Java Swing based application.
On my application,if i click anywhere on the JFrame or anything, then my right click is not working?
i had not set anything like that..then why is not working?

Basically my key board was not working then i try to copy – paste data using mouse then, i came about to know that…my right click is not working on any area of my application…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T19:35:31+00:00Added an answer on May 14, 2026 at 7:35 pm

    Your right click is working just fine – in Swing it’s normal to not be getting the context menus you’re used to in other apps. If you want to have a popup menu that opens up on right click with cut/copy/paste actions for example – you have to implement it yourself. I use something like this in my apps:

    public class ContextMenuMouseListener extends MouseAdapter {
        private JPopupMenu popup = new JPopupMenu();
    
        private Action cutAction;
        private Action copyAction;
        private Action pasteAction;
        private Action undoAction;
        private Action selectAllAction;
    
        private JTextComponent textComponent;
        private String savedString = "";
        private Actions lastActionSelected;
    
        private enum Actions { UNDO, CUT, COPY, PASTE, SELECT_ALL };
    
        public ContextMenuMouseListener() {
            undoAction = new AbstractAction("Undo") {
    
                @Override
                public void actionPerformed(ActionEvent ae) {
                        textComponent.setText("");
                        textComponent.replaceSelection(savedString);
    
                        lastActionSelected = Actions.UNDO;
                }
            };
    
            popup.add(undoAction);
            popup.addSeparator();
    
            cutAction = new AbstractAction("Cut") {
    
                @Override
                public void actionPerformed(ActionEvent ae) {
                    lastActionSelected = Actions.CUT;
                    savedString = textComponent.getText();
                    textComponent.cut();
                }
            };
    
            popup.add(cutAction);
    
            copyAction = new AbstractAction("Copy") {
    
                @Override
                public void actionPerformed(ActionEvent ae) {
                    lastActionSelected = Actions.COPY;
                    textComponent.copy();
                }
            };
    
            popup.add(copyAction);
    
            pasteAction = new AbstractAction("Paste") {
    
                @Override
                public void actionPerformed(ActionEvent ae) {
                    lastActionSelected = Actions.PASTE;
                    savedString = textComponent.getText();
                    textComponent.paste();
                }
            };
    
            popup.add(pasteAction);
            popup.addSeparator();
    
            selectAllAction = new AbstractAction("Select All") {
    
                @Override
                public void actionPerformed(ActionEvent ae) {
                    lastActionSelected = Actions.SELECT_ALL;
                    textComponent.selectAll();
                }
            };
    
            popup.add(selectAllAction);
        }
    
        @Override
        public void mouseClicked(MouseEvent e) {
            if (e.getModifiers() == InputEvent.BUTTON3_MASK) {
                if (!(e.getSource() instanceof JTextComponent)) {
                    return;
                }
    
                textComponent = (JTextComponent) e.getSource();
                textComponent.requestFocus();
    
                boolean enabled = textComponent.isEnabled();
                boolean editable = textComponent.isEditable();
                boolean nonempty = !(textComponent.getText() == null || textComponent.getText().equals(""));
                boolean marked = textComponent.getSelectedText() != null;
    
                boolean pasteAvailable = Toolkit.getDefaultToolkit().getSystemClipboard().getContents(null).isDataFlavorSupported(DataFlavor.stringFlavor);
    
                undoAction.setEnabled(enabled && editable && (lastActionSelected == Actions.CUT || lastActionSelected == Actions.PASTE));
                cutAction.setEnabled(enabled && editable && marked);
                copyAction.setEnabled(enabled && marked);
                pasteAction.setEnabled(enabled && editable && pasteAvailable);
                selectAllAction.setEnabled(enabled && nonempty);
    
                int nx = e.getX();
    
                if (nx > 500) {
                    nx = nx - popup.getSize().width;
                }
    
                popup.show(e.getComponent(), nx, e.getY() - popup.getSize().height);
            }
        }
    }
    

    In the end you should attach this listener to any text components that you want to have a context menu on right click.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 388k
  • Answers 388k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You can't. You need an account to post on both… May 15, 2026 at 12:27 am
  • Editorial Team
    Editorial Team added an answer On the other hand, I could concatenate all prices in… May 15, 2026 at 12:27 am
  • Editorial Team
    Editorial Team added an answer If it were mine to do, I'd go the SSIS… May 15, 2026 at 12:27 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.