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 7975795
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T08:44:36+00:00 2026-06-04T08:44:36+00:00

I need to get an input from keyboard using a JtextPanel, saving it on

  • 0

I need to get an input from keyboard using a JtextPanel, saving it on a string when I press enter, then use that string to do some action based on line given in input ( example “help” or “quit”). I got this in my KeyListener for JTextPanel:

...
public void keyPressed(KeyEvent e) {
     int key = e.getKeyCode();    

     if (key == KeyEvent.VK_ENTER) {
        inputString = textField.getText();
        textArea.append(inputString + "\n");
        textField.setText("");

        }
}
....

, but I cant call this method directly. I would need something like

String input = processInput();
    if((input).equals("help"))
          ............
    else if ((input).equals("go"))
          ............

and processInput should be a method that waits for the (key== KeyEvent.VK_ENTER), like happens when you use the scanf in C or the bufferedReader in java, it waits for you giving a string from keyboard till you press enter.
EDIT

My app manages commands like that

while(!finished) {

    finished = processInput() 
}

processInput manages the command given in input. That’s why I cant call processInput() from the keyListener
I hope i was clear, my english is so bad!

thanks

  • 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-04T08:44:37+00:00Added an answer on June 4, 2026 at 8:44 am

    How about this approach, pretty simple.

    KeyListener:

    ...
    public void keyPressed(KeyEvent e) {
         int key = e.getKeyCode();    
    
         if (key == KeyEvent.VK_ENTER) {
            inputString = textField.getText();
            textArea.append(inputString + "\n");
            textField.setText("");
            processInput(inputString); //crunch it
            }
    }
    ....
    

    And elsewhere

    public void processInput(String input) {
        if((input).equals("help"))
              ............
        else if ((input).equals("go"))
              ............
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to get some input from a user and use that input in
I wrote some code to get input from a user and then alter it
I'm using nasm under ubuntu. By the way i need to get single input
I need to get very basic input from an external file in C++. I
I need to get user input from console asynchronously, i.e. without blocking. I could
I have a windows forms application and I need to get an input from
I am trying to get a decimal input from the keyboard, and it is
Is it possible to get the current input type (text or numbers) from keyboard?
I need to get the Integer input from the user ( from the EditText
Why do we need a buffer when we get input from the user? For

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.