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

  • SEARCH
  • Home
  • 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 9173841
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T16:39:14+00:00 2026-06-17T16:39:14+00:00

How can I get key combination of keys on keyboard E.G. ( Ctrl +

  • 0

How can I get key combination of keys on keyboard E.G. (Ctrl+somekey, Alt+somekey) with Java?

I use KeyEvent listener, MouseEvent listener for all keys on keyboard. I can catch all key event on keyboard by using that listener. But, I cannot catch key combination such as (Ctrl+Alt+Del)….etc.

  • 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-06-17T16:39:15+00:00Added an answer on June 17, 2026 at 4:39 pm
    @Override
    public void keyPressed(KeyEvent evt) {
             if (evt.getKeyCode()==KeyEvent.VK_CONTROL) { ctrl  = true; }
        else if (evt.getKeyCode()==KeyEvent.VK_SHIFT)   { shift = true; }
        else if (evt.getKeyCode()==KeyEvent.VK_ALT)     { alt   = true; }
        else {
            keyHit = KeyEvent.getKeyText( evt.getKeyCode() );
            System.out.println("Key Hit is "+keyHit);
        }
    
        processLocalKeyEvent(evt);
    }
    
    @Override
    public void keyReleased(KeyEvent evt) {
    
        if (evt.isControlDown() && keyHit != "") ctrl  = true;
        if (evt.isAltDown()     && keyHit != "") alt   = true;
        if (evt.isShiftDown()   && keyHit != "") shift = true;
    
        if (ctrl)  sb.append("Ctrl");
        if (shift) sb.append("Shift");   
        if (alt)   sb.append("Alt"); 
        if (!ctrl && !shift && !alt) {
            sb.append(keyHit);
        } else {
            sb.append("_"+keyHit);
        }
    
        if (ctrl || shift || alt) {
            Thread thread = new Thread();
            try {
                thread.sleep(300);
                rfbProto.capture();
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        } else if ((ctrl || shift || alt) && keyHit=="") {
            rfbProto.capture();
        } else if ((!ctrl || !shift || !alt) && keyHit!="") {
            rfbProto.capture();
        }
    
        ctrl  = false;
        shift = false;
        alt   = false;
        keyHit = "";
        sb = new StringBuffer();
        processLocalKeyEvent(evt);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to use my debug keystore so I can get a key for
In T-SQL you can use CROSS APPLY to get all possible variations between the
I am trying to get my application to output a key combination ( ALT
In NSTextView , I can get special characters by pressing a certain key combination.
i hae a link like ( domain.com/jsapi?key=123456 ) hov can i get this key
How can I get the foreign key values? I have a common vehicle model
How can I get the last key of an array?
Other than using browser,How can I get the public key of a websites which
In Python, how can I simply do the equivalent of dictionary.get(key, default) for lists
HashMap selections = new HashMap<Integer, Float>(); How can i get the Integer key of

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.